diff --git a/src/TRestGeant4ParticleSourceCosmics.cxx b/src/TRestGeant4ParticleSourceCosmics.cxx index c20dd69..c0f5381 100644 --- a/src/TRestGeant4ParticleSourceCosmics.cxx +++ b/src/TRestGeant4ParticleSourceCosmics.cxx @@ -10,8 +10,17 @@ mutex TRestGeant4ParticleSourceCosmics::fMutex; unique_ptr TRestGeant4ParticleSourceCosmics::fRandom = nullptr; const map geant4ParticleNames = { - {"neutron", "neutron"}, {"proton", "proton"}, {"gamma", "gamma"}, {"electron_minus", "e-"}, - {"electron_plus", "e+"}, {"muon_minus", "mu-"}, {"muon_plus", "mu+"}, + {"neutron", "neutron"}, + {"proton", "proton"}, + {"gamma", "gamma"}, + {"electron_minus", "e-"}, + {"electron_plus", "e+"}, + {"muon_minus", "mu-"}, + {"muon_plus", "mu+"}, + // + {"neutron_below_1MeV", "neutron"}, + {"neutron_above_10GeV", "neutron"}, + {"neutron_between_1MeV_and_10GeV", "neutron"}, }; TRestGeant4ParticleSourceCosmics::TRestGeant4ParticleSourceCosmics() = default;