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 /// \file electromagnetic/TestEm13/src/Physics << 26 // 27 /// \brief Implementation of the PhysicsList c << 27 // $Id: PhysicsList.cc,v 1.5 2006/06/29 16:44:40 gunter Exp $ 28 // << 28 // GEANT4 tag $Name: geant4-09-02 $ 29 // 29 // 30 //....oooOO0OOooo........oooOO0OOooo........oo 30 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 31 //....oooOO0OOooo........oooOO0OOooo........oo 31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 32 32 33 #include "PhysicsList.hh" 33 #include "PhysicsList.hh" 34 << 34 #include "PhysicsListMessenger.hh" >> 35 >> 36 #include "PhysListEmStandard.hh" 35 #include "PhysListEmLivermore.hh" 37 #include "PhysListEmLivermore.hh" 36 #include "PhysListEmPenelope.hh" 38 #include "PhysListEmPenelope.hh" 37 #include "PhysListEmStandard.hh" << 38 #include "PhysicsListMessenger.hh" << 39 39 40 #include "G4LossTableManager.hh" 40 #include "G4LossTableManager.hh" 41 #include "G4SystemOfUnits.hh" << 42 #include "G4UnitsTable.hh" 41 #include "G4UnitsTable.hh" 43 42 44 // particles << 45 << 46 #include "G4BaryonConstructor.hh" << 47 #include "G4BosonConstructor.hh" << 48 #include "G4IonConstructor.hh" << 49 #include "G4LeptonConstructor.hh" << 50 #include "G4MesonConstructor.hh" << 51 #include "G4ShortLivedConstructor.hh" << 52 << 53 //....oooOO0OOooo........oooOO0OOooo........oo 43 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 54 44 55 PhysicsList::PhysicsList() << 45 PhysicsList::PhysicsList() >> 46 : G4VModularPhysicsList() 56 { 47 { 57 // add new units for cross sections << 48 G4LossTableManager::Instance(); 58 // << 49 59 new G4UnitDefinition("mm2/g", "mm2/g", "Surf << 50 currentDefaultCut = 1.0*mm; 60 new G4UnitDefinition("um2/mg", "um2/mg", "Su << 51 cutForGamma = currentDefaultCut; >> 52 cutForElectron = currentDefaultCut; >> 53 cutForPositron = currentDefaultCut; 61 54 62 SetVerboseLevel(1); << 55 pMessenger = new PhysicsListMessenger(this); 63 56 64 fMessenger = new PhysicsListMessenger(this); << 57 SetVerboseLevel(1); 65 58 66 // EM physics 59 // EM physics 67 fEmName = G4String("standard"); << 60 emName = G4String("standard"); 68 fEmPhysicsList = new PhysListEmStandard(fEmN << 61 emPhysicsList = new PhysListEmStandard(emName); 69 62 70 G4LossTableManager::Instance(); << 71 SetDefaultCutValue(1.0 * mm); << 72 } 63 } 73 64 74 //....oooOO0OOooo........oooOO0OOooo........oo 65 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 75 66 76 PhysicsList::~PhysicsList() 67 PhysicsList::~PhysicsList() 77 { 68 { 78 delete fMessenger; << 69 delete pMessenger; 79 } 70 } 80 71 81 //....oooOO0OOooo........oooOO0OOooo........oo 72 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 82 73 83 void PhysicsList::ConstructParticle() << 74 // Bosons 84 { << 75 #include "G4ChargedGeantino.hh" 85 G4BosonConstructor pBosonConstructor; << 76 #include "G4Geantino.hh" 86 pBosonConstructor.ConstructParticle(); << 77 #include "G4Gamma.hh" >> 78 #include "G4OpticalPhoton.hh" 87 79 88 G4LeptonConstructor pLeptonConstructor; << 80 // leptons 89 pLeptonConstructor.ConstructParticle(); << 81 #include "G4MuonPlus.hh" >> 82 #include "G4MuonMinus.hh" >> 83 #include "G4NeutrinoMu.hh" >> 84 #include "G4AntiNeutrinoMu.hh" 90 85 91 G4MesonConstructor pMesonConstructor; << 86 #include "G4Electron.hh" 92 pMesonConstructor.ConstructParticle(); << 87 #include "G4Positron.hh" >> 88 #include "G4NeutrinoE.hh" >> 89 #include "G4AntiNeutrinoE.hh" 93 90 94 G4BaryonConstructor pBaryonConstructor; << 91 // Mesons 95 pBaryonConstructor.ConstructParticle(); << 92 #include "G4PionPlus.hh" >> 93 #include "G4PionMinus.hh" >> 94 #include "G4PionZero.hh" >> 95 #include "G4Eta.hh" >> 96 #include "G4EtaPrime.hh" >> 97 >> 98 #include "G4KaonPlus.hh" >> 99 #include "G4KaonMinus.hh" >> 100 #include "G4KaonZero.hh" >> 101 #include "G4AntiKaonZero.hh" >> 102 #include "G4KaonZeroLong.hh" >> 103 #include "G4KaonZeroShort.hh" >> 104 >> 105 // Baryons >> 106 #include "G4Proton.hh" >> 107 #include "G4AntiProton.hh" >> 108 #include "G4Neutron.hh" >> 109 #include "G4AntiNeutron.hh" >> 110 >> 111 // Nuclei >> 112 #include "G4Deuteron.hh" >> 113 #include "G4Triton.hh" >> 114 #include "G4Alpha.hh" >> 115 #include "G4GenericIon.hh" 96 116 97 G4IonConstructor pIonConstructor; << 117 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 98 pIonConstructor.ConstructParticle(); << 99 118 100 G4ShortLivedConstructor pShortLivedConstruct << 119 void PhysicsList::ConstructParticle() 101 pShortLivedConstructor.ConstructParticle(); << 120 { >> 121 // pseudo-particles >> 122 G4Geantino::GeantinoDefinition(); >> 123 G4ChargedGeantino::ChargedGeantinoDefinition(); >> 124 >> 125 // gamma >> 126 G4Gamma::GammaDefinition(); >> 127 >> 128 // optical photon >> 129 G4OpticalPhoton::OpticalPhotonDefinition(); >> 130 >> 131 // leptons >> 132 G4Electron::ElectronDefinition(); >> 133 G4Positron::PositronDefinition(); >> 134 G4MuonPlus::MuonPlusDefinition(); >> 135 G4MuonMinus::MuonMinusDefinition(); >> 136 >> 137 G4NeutrinoE::NeutrinoEDefinition(); >> 138 G4AntiNeutrinoE::AntiNeutrinoEDefinition(); >> 139 G4NeutrinoMu::NeutrinoMuDefinition(); >> 140 G4AntiNeutrinoMu::AntiNeutrinoMuDefinition(); >> 141 >> 142 // mesons >> 143 G4PionPlus::PionPlusDefinition(); >> 144 G4PionMinus::PionMinusDefinition(); >> 145 G4PionZero::PionZeroDefinition(); >> 146 G4Eta::EtaDefinition(); >> 147 G4EtaPrime::EtaPrimeDefinition(); >> 148 G4KaonPlus::KaonPlusDefinition(); >> 149 G4KaonMinus::KaonMinusDefinition(); >> 150 G4KaonZero::KaonZeroDefinition(); >> 151 G4AntiKaonZero::AntiKaonZeroDefinition(); >> 152 G4KaonZeroLong::KaonZeroLongDefinition(); >> 153 G4KaonZeroShort::KaonZeroShortDefinition(); >> 154 >> 155 // barions >> 156 G4Proton::ProtonDefinition(); >> 157 G4AntiProton::AntiProtonDefinition(); >> 158 G4Neutron::NeutronDefinition(); >> 159 G4AntiNeutron::AntiNeutronDefinition(); >> 160 >> 161 // ions >> 162 G4Deuteron::DeuteronDefinition(); >> 163 G4Triton::TritonDefinition(); >> 164 G4Alpha::AlphaDefinition(); >> 165 G4GenericIon::GenericIonDefinition(); 102 } 166 } 103 167 104 //....oooOO0OOooo........oooOO0OOooo........oo 168 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 105 169 >> 170 #include "G4EmProcessOptions.hh" >> 171 106 void PhysicsList::ConstructProcess() 172 void PhysicsList::ConstructProcess() 107 { 173 { 108 // Transportation 174 // Transportation 109 // 175 // 110 AddTransportation(); 176 AddTransportation(); 111 177 112 // Electromagnetic physics list 178 // Electromagnetic physics list 113 // 179 // 114 fEmPhysicsList->ConstructProcess(); << 180 emPhysicsList->ConstructProcess(); 115 << 181 116 // Em options 182 // Em options 117 // 183 // 118 G4EmParameters* param = G4EmParameters::Inst << 184 G4EmProcessOptions emOptions; 119 param->SetIntegral(false); << 185 emOptions.SetStepFunction(1., 1*mm); >> 186 emOptions.SetIntegral(false); >> 187 emOptions.SetLossFluctuations(false); 120 } 188 } 121 189 122 //....oooOO0OOooo........oooOO0OOooo........oo 190 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 123 191 124 void PhysicsList::AddPhysicsList(const G4Strin 192 void PhysicsList::AddPhysicsList(const G4String& name) 125 { 193 { 126 if (verboseLevel > 0) { << 194 if (verboseLevel>0) { 127 G4cout << "PhysicsList::AddPhysicsList: <" 195 G4cout << "PhysicsList::AddPhysicsList: <" << name << ">" << G4endl; 128 } 196 } 129 << 197 130 if (name == fEmName) return; << 198 if (name == emName) return; 131 199 132 if (name == "standard") { 200 if (name == "standard") { 133 fEmName = name; << 201 134 delete fEmPhysicsList; << 202 emName = name; 135 fEmPhysicsList = new PhysListEmStandard(na << 203 delete emPhysicsList; 136 } << 204 emPhysicsList = new PhysListEmStandard(name); 137 else if (name == "livermore") { << 205 138 fEmName = name; << 206 } else if (name == "livermore") { 139 delete fEmPhysicsList; << 207 emName = name; 140 fEmPhysicsList = new PhysListEmLivermore(n << 208 delete emPhysicsList; 141 } << 209 emPhysicsList = new PhysListEmLivermore(name); 142 else if (name == "penelope") { << 210 143 fEmName = name; << 211 } else if (name == "penelope") { 144 delete fEmPhysicsList; << 212 emName = name; 145 fEmPhysicsList = new PhysListEmPenelope(na << 213 delete emPhysicsList; 146 } << 214 emPhysicsList = new PhysListEmPenelope(name); 147 else { << 215 >> 216 } else { 148 G4cout << "PhysicsList::AddPhysicsList: <" 217 G4cout << "PhysicsList::AddPhysicsList: <" << name << ">" 149 << " is not defined" << G4endl; << 218 << " is not defined" >> 219 << G4endl; 150 } 220 } 151 } 221 } 152 222 153 //....oooOO0OOooo........oooOO0OOooo........oo 223 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 154 224 155 #include "G4Electron.hh" << 156 #include "G4Gamma.hh" 225 #include "G4Gamma.hh" >> 226 #include "G4Electron.hh" 157 #include "G4Positron.hh" 227 #include "G4Positron.hh" 158 228 159 void PhysicsList::SetCuts() 229 void PhysicsList::SetCuts() >> 230 { >> 231 // set cut values for gamma at first and for e- second and next for e+, >> 232 // because some processes for e+/e- need cut values for gamma >> 233 SetCutValue(cutForGamma, "gamma"); >> 234 SetCutValue(cutForElectron, "e-"); >> 235 SetCutValue(cutForPositron, "e+"); >> 236 } >> 237 >> 238 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... >> 239 >> 240 void PhysicsList::SetCutForGamma(G4double cut) >> 241 { >> 242 cutForGamma = cut; >> 243 SetParticleCuts(cutForGamma, G4Gamma::Gamma()); >> 244 } >> 245 >> 246 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... >> 247 >> 248 void PhysicsList::SetCutForElectron(G4double cut) 160 { 249 { 161 // fixe lower limit for cut << 250 cutForElectron = cut; 162 G4ProductionCutsTable::GetProductionCutsTabl << 251 SetParticleCuts(cutForElectron, G4Electron::Electron()); >> 252 } 163 253 164 // call base class method to set cuts which << 254 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 165 // modified via /run/setCut/* commands << 166 G4VUserPhysicsList::SetCuts(); << 167 255 168 DumpCutValuesTable(); << 256 void PhysicsList::SetCutForPositron(G4double cut) >> 257 { >> 258 cutForPositron = cut; >> 259 SetParticleCuts(cutForPositron, G4Positron::Positron()); 169 } 260 } 170 261 171 //....oooOO0OOooo........oooOO0OOooo........oo 262 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 172 263