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