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