Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // 26 26 27 #include "GammaKnifeParticles.hh" 27 #include "GammaKnifeParticles.hh" 28 #include "G4ParticleDefinition.hh" 28 #include "G4ParticleDefinition.hh" 29 #include "G4ParticleTypes.hh" 29 #include "G4ParticleTypes.hh" 30 #include "G4ParticleTable.hh" 30 #include "G4ParticleTable.hh" 31 #include "G4LeptonConstructor.hh" 31 #include "G4LeptonConstructor.hh" 32 #include "G4BosonConstructor.hh" 32 #include "G4BosonConstructor.hh" 33 #include "G4MesonConstructor.hh" 33 #include "G4MesonConstructor.hh" 34 #include "G4BaryonConstructor.hh" 34 #include "G4BaryonConstructor.hh" 35 #include "G4ShortLivedConstructor.hh" 35 #include "G4ShortLivedConstructor.hh" 36 #include "G4IonConstructor.hh" 36 #include "G4IonConstructor.hh" 37 #include "G4SystemOfUnits.hh" 37 #include "G4SystemOfUnits.hh" 38 38 39 GammaKnifeParticles::GammaKnifeParticles(const 39 GammaKnifeParticles::GammaKnifeParticles(const G4String& name) 40 : G4VPhysicsConstructor(name) 40 : G4VPhysicsConstructor(name) 41 { } 41 { } 42 42 43 GammaKnifeParticles::~GammaKnifeParticles() 43 GammaKnifeParticles::~GammaKnifeParticles() 44 {} 44 {} 45 45 46 void GammaKnifeParticles::ConstructParticle() 46 void GammaKnifeParticles::ConstructParticle() 47 { 47 { 48 G4Gamma::GammaDefinition(); 48 G4Gamma::GammaDefinition(); 49 49 50 // *******// 50 // *******// 51 // leptons// 51 // leptons// 52 // *******// 52 // *******// 53 53 54 G4Electron::ElectronDefinition(); 54 G4Electron::ElectronDefinition(); 55 G4Positron::PositronDefinition(); 55 G4Positron::PositronDefinition(); 56 G4MuonPlus::MuonPlusDefinition(); 56 G4MuonPlus::MuonPlusDefinition(); 57 G4MuonMinus::MuonMinusDefinition(); 57 G4MuonMinus::MuonMinusDefinition(); 58 G4NeutrinoE::NeutrinoEDefinition(); 58 G4NeutrinoE::NeutrinoEDefinition(); 59 G4AntiNeutrinoE::AntiNeutrinoEDefinition(); 59 G4AntiNeutrinoE::AntiNeutrinoEDefinition(); 60 G4NeutrinoMu::NeutrinoMuDefinition(); 60 G4NeutrinoMu::NeutrinoMuDefinition(); 61 G4AntiNeutrinoMu::AntiNeutrinoMuDefinition() 61 G4AntiNeutrinoMu::AntiNeutrinoMuDefinition(); 62 62 63 // ********// 63 // ********// 64 // mesons // 64 // mesons // 65 // ********// 65 // ********// 66 G4PionPlus::PionPlusDefinition(); 66 G4PionPlus::PionPlusDefinition(); 67 G4PionMinus::PionMinusDefinition(); 67 G4PionMinus::PionMinusDefinition(); 68 G4PionZero::PionZeroDefinition(); 68 G4PionZero::PionZeroDefinition(); 69 G4KaonPlus::KaonPlusDefinition(); 69 G4KaonPlus::KaonPlusDefinition(); 70 G4KaonMinus::KaonMinusDefinition(); 70 G4KaonMinus::KaonMinusDefinition(); 71 71 72 // **********// 72 // **********// 73 // barions // 73 // barions // 74 // **********// 74 // **********// 75 G4Proton::ProtonDefinition(); 75 G4Proton::ProtonDefinition(); 76 G4AntiProton::AntiProtonDefinition(); 76 G4AntiProton::AntiProtonDefinition(); 77 G4Neutron::NeutronDefinition(); 77 G4Neutron::NeutronDefinition(); 78 G4AntiNeutron::AntiNeutronDefinition(); 78 G4AntiNeutron::AntiNeutronDefinition(); 79 79 80 // ******// 80 // ******// 81 // ions // 81 // ions // 82 // ******// 82 // ******// 83 G4Deuteron::DeuteronDefinition(); 83 G4Deuteron::DeuteronDefinition(); 84 G4Triton::TritonDefinition(); 84 G4Triton::TritonDefinition(); 85 G4He3::He3Definition(); 85 G4He3::He3Definition(); 86 G4Alpha::AlphaDefinition(); 86 G4Alpha::AlphaDefinition(); 87 G4GenericIon::GenericIonDefinition(); 87 G4GenericIon::GenericIonDefinition(); 88 88 89 G4LeptonConstructor lepton; 89 G4LeptonConstructor lepton; 90 lepton.ConstructParticle(); 90 lepton.ConstructParticle(); 91 91 92 G4BosonConstructor boson; 92 G4BosonConstructor boson; 93 boson.ConstructParticle(); 93 boson.ConstructParticle(); 94 94 95 G4MesonConstructor meson; 95 G4MesonConstructor meson; 96 meson.ConstructParticle(); 96 meson.ConstructParticle(); 97 97 98 G4BaryonConstructor baryon; 98 G4BaryonConstructor baryon; 99 baryon.ConstructParticle(); 99 baryon.ConstructParticle(); 100 100 101 G4ShortLivedConstructor shortLived; 101 G4ShortLivedConstructor shortLived; 102 shortLived.ConstructParticle(); 102 shortLived.ConstructParticle(); 103 103 104 G4IonConstructor ion; 104 G4IonConstructor ion; 105 ion.ConstructParticle(); 105 ion.ConstructParticle(); 106 106 107 } 107 } 108 108