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/TestEm0/src/PhysicsL 26 /// \file electromagnetic/TestEm0/src/PhysicsList.cc 27 /// \brief Implementation of the PhysicsList c 27 /// \brief Implementation of the PhysicsList class 28 // 28 // >> 29 // >> 30 // $Id: PhysicsList.cc 66241 2012-12-13 18:34:42Z gunter $ 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 << 35 #include "PhysListEmStandard.hh" << 36 #include "PhysicsListMessenger.hh" 36 #include "PhysicsListMessenger.hh" 37 << 37 38 #include "G4EmLivermorePhysics.hh" << 38 #include "PhysListEmStandard.hh" 39 #include "G4EmParameters.hh" << 40 #include "G4EmPenelopePhysics.hh" << 41 #include "G4EmStandardPhysics.hh" 39 #include "G4EmStandardPhysics.hh" 42 #include "G4EmStandardPhysics_option1.hh" 40 #include "G4EmStandardPhysics_option1.hh" 43 #include "G4EmStandardPhysics_option2.hh" 41 #include "G4EmStandardPhysics_option2.hh" 44 #include "G4EmStandardPhysics_option3.hh" 42 #include "G4EmStandardPhysics_option3.hh" 45 #include "G4EmStandardPhysics_option4.hh" 43 #include "G4EmStandardPhysics_option4.hh" >> 44 #include "G4EmLivermorePhysics.hh" >> 45 #include "G4EmPenelopePhysics.hh" >> 46 46 #include "G4LossTableManager.hh" 47 #include "G4LossTableManager.hh" 47 #include "G4SystemOfUnits.hh" << 48 #include "G4UnitsTable.hh" 48 #include "G4UnitsTable.hh" >> 49 #include "G4SystemOfUnits.hh" >> 50 >> 51 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... >> 52 >> 53 PhysicsList::PhysicsList() >> 54 : G4VModularPhysicsList(),fCutForGamma(0),fCutForElectron(0),fCutForPositron(0), >> 55 fCurrentDefaultCut(0),fEmPhysicsList(0),fEmName("local"),fMessenger(0) >> 56 { >> 57 G4LossTableManager::Instance(); >> 58 >> 59 fCurrentDefaultCut = 1.0*mm; >> 60 fCutForGamma = fCurrentDefaultCut; >> 61 fCutForElectron = fCurrentDefaultCut; >> 62 fCutForPositron = fCurrentDefaultCut; >> 63 >> 64 fMessenger = new PhysicsListMessenger(this); >> 65 >> 66 SetVerboseLevel(1); >> 67 >> 68 // EM physics >> 69 fEmName = G4String("local"); >> 70 fEmPhysicsList = new PhysListEmStandard(fEmName); >> 71 >> 72 //add new units for cross sections >> 73 // >> 74 new G4UnitDefinition( "mm2/g", "mm2/g","Surface/Mass", mm2/g); >> 75 new G4UnitDefinition( "um2/mg", "um2/mg","Surface/Mass", um*um/mg); >> 76 } >> 77 >> 78 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... >> 79 >> 80 PhysicsList::~PhysicsList() >> 81 { >> 82 delete fMessenger; >> 83 } >> 84 >> 85 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 49 86 50 // Bosons 87 // Bosons 51 #include "G4ChargedGeantino.hh" 88 #include "G4ChargedGeantino.hh" 52 #include "G4Gamma.hh" << 53 #include "G4Geantino.hh" 89 #include "G4Geantino.hh" >> 90 #include "G4Gamma.hh" 54 #include "G4OpticalPhoton.hh" 91 #include "G4OpticalPhoton.hh" 55 92 56 // leptons 93 // leptons 57 #include "G4AntiNeutrinoE.hh" << 58 #include "G4AntiNeutrinoMu.hh" << 59 #include "G4Electron.hh" << 60 #include "G4MuonMinus.hh" << 61 #include "G4MuonPlus.hh" 94 #include "G4MuonPlus.hh" 62 #include "G4NeutrinoE.hh" << 95 #include "G4MuonMinus.hh" 63 #include "G4NeutrinoMu.hh" 96 #include "G4NeutrinoMu.hh" >> 97 #include "G4AntiNeutrinoMu.hh" >> 98 >> 99 #include "G4Electron.hh" 64 #include "G4Positron.hh" 100 #include "G4Positron.hh" >> 101 #include "G4NeutrinoE.hh" >> 102 #include "G4AntiNeutrinoE.hh" 65 103 66 // Mesons 104 // Mesons 67 #include "G4AntiKaonZero.hh" << 105 #include "G4PionPlus.hh" >> 106 #include "G4PionMinus.hh" >> 107 #include "G4PionZero.hh" 68 #include "G4Eta.hh" 108 #include "G4Eta.hh" 69 #include "G4EtaPrime.hh" 109 #include "G4EtaPrime.hh" 70 #include "G4KaonMinus.hh" << 110 71 #include "G4KaonPlus.hh" 111 #include "G4KaonPlus.hh" >> 112 #include "G4KaonMinus.hh" 72 #include "G4KaonZero.hh" 113 #include "G4KaonZero.hh" >> 114 #include "G4AntiKaonZero.hh" 73 #include "G4KaonZeroLong.hh" 115 #include "G4KaonZeroLong.hh" 74 #include "G4KaonZeroShort.hh" 116 #include "G4KaonZeroShort.hh" 75 #include "G4PionMinus.hh" << 76 #include "G4PionPlus.hh" << 77 #include "G4PionZero.hh" << 78 117 79 // Baryons 118 // Baryons 80 #include "G4AntiNeutron.hh" << 119 #include "G4Proton.hh" 81 #include "G4AntiProton.hh" 120 #include "G4AntiProton.hh" 82 #include "G4Neutron.hh" 121 #include "G4Neutron.hh" 83 #include "G4Proton.hh" << 122 #include "G4AntiNeutron.hh" 84 123 85 // Nuclei 124 // Nuclei 86 #include "G4Alpha.hh" << 87 #include "G4Deuteron.hh" 125 #include "G4Deuteron.hh" 88 #include "G4GenericIon.hh" << 89 #include "G4Triton.hh" 126 #include "G4Triton.hh" 90 << 127 #include "G4Alpha.hh" 91 //....oooOO0OOooo........oooOO0OOooo........oo << 128 #include "G4GenericIon.hh" 92 << 93 PhysicsList::PhysicsList() << 94 { << 95 fMessenger = new PhysicsListMessenger(this); << 96 << 97 // set default cut value << 98 SetDefaultCutValue(1.0 * mm); << 99 << 100 SetVerboseLevel(1); << 101 << 102 AddPhysicsList("emstandard_opt0"); << 103 << 104 G4ProductionCutsTable::GetProductionCutsTabl << 105 << 106 // add new units for cross sections << 107 // << 108 new G4UnitDefinition("mm2/g", "mm2/g", "Surf << 109 new G4UnitDefinition("um2/mg", "um2/mg", "Su << 110 } << 111 << 112 //....oooOO0OOooo........oooOO0OOooo........oo << 113 << 114 PhysicsList::~PhysicsList() << 115 { << 116 delete fMessenger; << 117 } << 118 129 119 //....oooOO0OOooo........oooOO0OOooo........oo 130 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 120 131 121 void PhysicsList::ConstructParticle() 132 void PhysicsList::ConstructParticle() 122 { 133 { 123 // pseudo-particles << 134 // pseudo-particles 124 G4Geantino::GeantinoDefinition(); 135 G4Geantino::GeantinoDefinition(); 125 G4ChargedGeantino::ChargedGeantinoDefinition 136 G4ChargedGeantino::ChargedGeantinoDefinition(); 126 << 137 127 // gamma << 138 // gamma 128 G4Gamma::GammaDefinition(); 139 G4Gamma::GammaDefinition(); 129 << 140 130 // optical photon << 141 // optical photon 131 G4OpticalPhoton::OpticalPhotonDefinition(); 142 G4OpticalPhoton::OpticalPhotonDefinition(); 132 143 133 // leptons << 144 // leptons 134 G4Electron::ElectronDefinition(); 145 G4Electron::ElectronDefinition(); 135 G4Positron::PositronDefinition(); 146 G4Positron::PositronDefinition(); 136 G4MuonPlus::MuonPlusDefinition(); 147 G4MuonPlus::MuonPlusDefinition(); 137 G4MuonMinus::MuonMinusDefinition(); 148 G4MuonMinus::MuonMinusDefinition(); 138 149 139 G4NeutrinoE::NeutrinoEDefinition(); 150 G4NeutrinoE::NeutrinoEDefinition(); 140 G4AntiNeutrinoE::AntiNeutrinoEDefinition(); 151 G4AntiNeutrinoE::AntiNeutrinoEDefinition(); 141 G4NeutrinoMu::NeutrinoMuDefinition(); 152 G4NeutrinoMu::NeutrinoMuDefinition(); 142 G4AntiNeutrinoMu::AntiNeutrinoMuDefinition() << 153 G4AntiNeutrinoMu::AntiNeutrinoMuDefinition(); 143 154 144 // mesons << 155 // mesons 145 G4PionPlus::PionPlusDefinition(); 156 G4PionPlus::PionPlusDefinition(); 146 G4PionMinus::PionMinusDefinition(); 157 G4PionMinus::PionMinusDefinition(); 147 G4PionZero::PionZeroDefinition(); 158 G4PionZero::PionZeroDefinition(); 148 G4Eta::EtaDefinition(); 159 G4Eta::EtaDefinition(); 149 G4EtaPrime::EtaPrimeDefinition(); 160 G4EtaPrime::EtaPrimeDefinition(); 150 G4KaonPlus::KaonPlusDefinition(); 161 G4KaonPlus::KaonPlusDefinition(); 151 G4KaonMinus::KaonMinusDefinition(); 162 G4KaonMinus::KaonMinusDefinition(); 152 G4KaonZero::KaonZeroDefinition(); 163 G4KaonZero::KaonZeroDefinition(); 153 G4AntiKaonZero::AntiKaonZeroDefinition(); 164 G4AntiKaonZero::AntiKaonZeroDefinition(); 154 G4KaonZeroLong::KaonZeroLongDefinition(); 165 G4KaonZeroLong::KaonZeroLongDefinition(); 155 G4KaonZeroShort::KaonZeroShortDefinition(); 166 G4KaonZeroShort::KaonZeroShortDefinition(); 156 167 157 // barions << 168 // barions 158 G4Proton::ProtonDefinition(); 169 G4Proton::ProtonDefinition(); 159 G4AntiProton::AntiProtonDefinition(); 170 G4AntiProton::AntiProtonDefinition(); 160 G4Neutron::NeutronDefinition(); 171 G4Neutron::NeutronDefinition(); 161 G4AntiNeutron::AntiNeutronDefinition(); 172 G4AntiNeutron::AntiNeutronDefinition(); 162 173 163 // ions << 174 // ions 164 G4Deuteron::DeuteronDefinition(); 175 G4Deuteron::DeuteronDefinition(); 165 G4Triton::TritonDefinition(); 176 G4Triton::TritonDefinition(); 166 G4Alpha::AlphaDefinition(); 177 G4Alpha::AlphaDefinition(); 167 G4GenericIon::GenericIonDefinition(); 178 G4GenericIon::GenericIonDefinition(); 168 } 179 } 169 180 170 //....oooOO0OOooo........oooOO0OOooo........oo 181 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 171 182 >> 183 #include "G4EmProcessOptions.hh" >> 184 172 void PhysicsList::ConstructProcess() 185 void PhysicsList::ConstructProcess() 173 { 186 { 174 // Transportation 187 // Transportation 175 // 188 // 176 AddTransportation(); 189 AddTransportation(); 177 190 178 // Electromagnetic physics list 191 // Electromagnetic physics list 179 // 192 // 180 fEmPhysicsList->ConstructProcess(); 193 fEmPhysicsList->ConstructProcess(); >> 194 >> 195 // Em options >> 196 // >> 197 // Main options and setting parameters are shown here. >> 198 // Several of them have default values. >> 199 // >> 200 G4EmProcessOptions emOptions; >> 201 >> 202 //physics tables >> 203 // >> 204 //emOptions.SetMinEnergy(100*eV); //default >> 205 //emOptions.SetMaxEnergy(100*TeV); //default >> 206 //emOptions.SetDEDXBinning(12*20); //default=12*7 >> 207 //emOptions.SetLambdaBinning(12*20); //default=12*7 >> 208 >> 209 emOptions.SetBuildCSDARange(true); >> 210 emOptions.SetMaxEnergyForCSDARange(10*GeV); >> 211 //emOptions.SetDEDXBinningForCSDARange(12*20); >> 212 >> 213 //emOptions.SetSplineFlag(true); //default >> 214 >> 215 emOptions.SetVerbose(0); 181 } 216 } 182 217 183 //....oooOO0OOooo........oooOO0OOooo........oo 218 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 184 219 185 void PhysicsList::AddPhysicsList(const G4Strin 220 void PhysicsList::AddPhysicsList(const G4String& name) 186 { 221 { 187 if (verboseLevel > 0) { << 222 if (verboseLevel>0) { 188 G4cout << "PhysicsList::AddPhysicsList: <" 223 G4cout << "PhysicsList::AddPhysicsList: <" << name << ">" << G4endl; 189 } 224 } 190 << 225 191 if (name == fEmName) return; 226 if (name == fEmName) return; 192 227 193 if (name == "local") { 228 if (name == "local") { >> 229 194 fEmName = name; 230 fEmName = name; 195 delete fEmPhysicsList; 231 delete fEmPhysicsList; 196 fEmPhysicsList = new PhysListEmStandard(na 232 fEmPhysicsList = new PhysListEmStandard(name); 197 } << 233 198 else if (name == "emstandard_opt0") { << 234 } else if (name == "emstandard_opt0"){ 199 fEmName = name; 235 fEmName = name; 200 delete fEmPhysicsList; 236 delete fEmPhysicsList; 201 fEmPhysicsList = new G4EmStandardPhysics() 237 fEmPhysicsList = new G4EmStandardPhysics(); 202 } << 238 203 else if (name == "emstandard_opt1") { << 239 } else if (name == "emstandard_opt1"){ 204 fEmName = name; 240 fEmName = name; 205 delete fEmPhysicsList; 241 delete fEmPhysicsList; 206 fEmPhysicsList = new G4EmStandardPhysics_o 242 fEmPhysicsList = new G4EmStandardPhysics_option1(); 207 } << 243 208 else if (name == "emstandard_opt2") { << 244 } else if (name == "emstandard_opt2"){ 209 fEmName = name; 245 fEmName = name; 210 delete fEmPhysicsList; 246 delete fEmPhysicsList; 211 fEmPhysicsList = new G4EmStandardPhysics_o 247 fEmPhysicsList = new G4EmStandardPhysics_option2(); 212 } << 248 213 else if (name == "emstandard_opt3") { << 249 } else if (name == "emstandard_opt3"){ 214 fEmName = name; 250 fEmName = name; 215 delete fEmPhysicsList; 251 delete fEmPhysicsList; 216 fEmPhysicsList = new G4EmStandardPhysics_o 252 fEmPhysicsList = new G4EmStandardPhysics_option3(); 217 } << 253 218 else if (name == "emstandard_opt4") { << 254 } else if (name == "emstandard_opt4"){ 219 fEmName = name; 255 fEmName = name; 220 delete fEmPhysicsList; 256 delete fEmPhysicsList; 221 fEmPhysicsList = new G4EmStandardPhysics_o 257 fEmPhysicsList = new G4EmStandardPhysics_option4(); 222 } << 258 223 else if (name == "empenelope") { << 259 } else if (name == "empenelope"){ 224 fEmName = name; 260 fEmName = name; 225 delete fEmPhysicsList; 261 delete fEmPhysicsList; 226 fEmPhysicsList = new G4EmPenelopePhysics() 262 fEmPhysicsList = new G4EmPenelopePhysics(); 227 } << 263 228 else if (name == "emlivermore") { << 264 } else if (name == "emlivermore"){ 229 fEmName = name; 265 fEmName = name; 230 delete fEmPhysicsList; 266 delete fEmPhysicsList; 231 fEmPhysicsList = new G4EmLivermorePhysics( 267 fEmPhysicsList = new G4EmLivermorePhysics(); 232 } << 268 233 else { << 269 } else { >> 270 234 G4cout << "PhysicsList::AddPhysicsList: <" 271 G4cout << "PhysicsList::AddPhysicsList: <" << name << ">" 235 << " is not defined" << G4endl; << 272 << " is not defined" >> 273 << G4endl; 236 } 274 } >> 275 } 237 276 238 // Em options << 277 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 239 // << 278 240 G4EmParameters::Instance()->SetBuildCSDARang << 279 #include "G4Gamma.hh" 241 G4EmParameters::Instance()->SetGeneralProces << 280 #include "G4Electron.hh" >> 281 #include "G4Positron.hh" >> 282 >> 283 void PhysicsList::SetCuts() >> 284 { >> 285 // fixe lower limit for cut >> 286 G4ProductionCutsTable::GetProductionCutsTable()->SetEnergyRange(100*eV, 1*GeV); >> 287 >> 288 // set cut values for gamma at first and for e- second and next for e+, >> 289 // because some processes for e+/e- need cut values for gamma >> 290 SetCutValue(fCutForGamma, "gamma"); >> 291 SetCutValue(fCutForElectron, "e-"); >> 292 SetCutValue(fCutForPositron, "e+"); >> 293 DumpCutValuesTable(); >> 294 } >> 295 >> 296 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... >> 297 >> 298 void PhysicsList::SetCutForGamma(G4double cut) >> 299 { >> 300 fCutForGamma = cut; >> 301 SetParticleCuts(fCutForGamma, G4Gamma::Gamma()); >> 302 } >> 303 >> 304 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... >> 305 >> 306 void PhysicsList::SetCutForElectron(G4double cut) >> 307 { >> 308 fCutForElectron = cut; >> 309 SetParticleCuts(fCutForElectron, G4Electron::Electron()); >> 310 } >> 311 >> 312 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... >> 313 >> 314 void PhysicsList::SetCutForPositron(G4double cut) >> 315 { >> 316 fCutForPositron = cut; >> 317 SetParticleCuts(fCutForPositron, G4Positron::Positron()); 242 } 318 } 243 319 244 //....oooOO0OOooo........oooOO0OOooo........oo 320 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 245 321