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