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/TestEm17/src/Physics 26 /// \file electromagnetic/TestEm17/src/PhysicsList.cc 27 /// \brief Implementation of the PhysicsList c 27 /// \brief Implementation of the PhysicsList class 28 // 28 // 29 // 29 // >> 30 // $Id$ 30 // 31 // 31 //....oooOO0OOooo........oooOO0OOooo........oo 32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 32 //....oooOO0OOooo........oooOO0OOooo........oo 33 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 33 34 34 #include "PhysicsList.hh" 35 #include "PhysicsList.hh" >> 36 #include "PhysicsListMessenger.hh" 35 37 36 #include "MuNuclearBuilder.hh" << 37 #include "PhysListEmStandard.hh" 38 #include "PhysListEmStandard.hh" 38 #include "PhysicsListMessenger.hh" << 39 #include "MuNuclearBuilder.hh" >> 40 >> 41 #include "G4LossTableManager.hh" 39 42 40 #include "G4BaryonConstructor.hh" << 41 #include "G4BosonConstructor.hh" << 42 #include "G4Electron.hh" << 43 #include "G4EmParameters.hh" << 44 #include "G4EmStandardPhysics.hh" << 45 #include "G4EmStandardPhysics_option4.hh" << 46 #include "G4Gamma.hh" 43 #include "G4Gamma.hh" 47 #include "G4IonConstructor.hh" << 44 #include "G4Electron.hh" >> 45 #include "G4Positron.hh" >> 46 >> 47 #include "G4BosonConstructor.hh" 48 #include "G4LeptonConstructor.hh" 48 #include "G4LeptonConstructor.hh" 49 #include "G4MesonConstructor.hh" 49 #include "G4MesonConstructor.hh" 50 #include "G4Positron.hh" << 50 #include "G4BosonConstructor.hh" >> 51 #include "G4BaryonConstructor.hh" >> 52 #include "G4IonConstructor.hh" 51 #include "G4ShortLivedConstructor.hh" 53 #include "G4ShortLivedConstructor.hh" >> 54 52 #include "G4SystemOfUnits.hh" 55 #include "G4SystemOfUnits.hh" 53 56 54 //....oooOO0OOooo........oooOO0OOooo........oo 57 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 55 58 56 PhysicsList::PhysicsList() << 59 PhysicsList::PhysicsList() : G4VModularPhysicsList() 57 : G4VModularPhysicsList(), fEmPhysicsList(0) << 58 { 60 { 59 SetVerboseLevel(1); 61 SetVerboseLevel(1); 60 fMessenger = new PhysicsListMessenger(this); 62 fMessenger = new PhysicsListMessenger(this); 61 63 >> 64 // cuts >> 65 fCurrentDefaultCut = 1.0*mm; >> 66 fCutForGamma = fCurrentDefaultCut; >> 67 fCutForElectron = fCurrentDefaultCut; >> 68 fCutForPositron = fCurrentDefaultCut; >> 69 62 // EM physics 70 // EM physics 63 fEmName = G4String("emstandard_opt0"); << 71 fEmName = G4String("standard"); 64 fEmPhysicsList = new G4EmStandardPhysics(); << 72 fEmPhysicsList = new PhysListEmStandard(fEmName); 65 << 66 // extend energy range of PhysicsTables << 67 // << 68 G4EmParameters* param = G4EmParameters::Inst << 69 param->SetMinEnergy(100 * eV); << 70 param->SetMaxEnergy(1000 * PeV); << 71 73 72 fMuNuclPhysicsList = 0; 74 fMuNuclPhysicsList = 0; >> 75 >> 76 // instanciate EnergyLossTable >> 77 G4LossTableManager::Instance(); 73 } 78 } 74 79 75 //....oooOO0OOooo........oooOO0OOooo........oo 80 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 76 81 77 PhysicsList::~PhysicsList() 82 PhysicsList::~PhysicsList() 78 { 83 { 79 delete fMessenger; 84 delete fMessenger; 80 } 85 } 81 86 82 //....oooOO0OOooo........oooOO0OOooo........oo 87 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 83 88 84 void PhysicsList::ConstructParticle() 89 void PhysicsList::ConstructParticle() 85 { 90 { 86 G4BosonConstructor pBosonConstructor; << 91 G4BosonConstructor pBosonConstructor; 87 pBosonConstructor.ConstructParticle(); 92 pBosonConstructor.ConstructParticle(); 88 93 89 G4LeptonConstructor pLeptonConstructor; 94 G4LeptonConstructor pLeptonConstructor; 90 pLeptonConstructor.ConstructParticle(); 95 pLeptonConstructor.ConstructParticle(); 91 96 92 G4MesonConstructor pMesonConstructor; 97 G4MesonConstructor pMesonConstructor; 93 pMesonConstructor.ConstructParticle(); 98 pMesonConstructor.ConstructParticle(); 94 99 95 G4BaryonConstructor pBaryonConstructor; 100 G4BaryonConstructor pBaryonConstructor; 96 pBaryonConstructor.ConstructParticle(); 101 pBaryonConstructor.ConstructParticle(); 97 102 98 G4IonConstructor pIonConstructor; 103 G4IonConstructor pIonConstructor; 99 pIonConstructor.ConstructParticle(); 104 pIonConstructor.ConstructParticle(); 100 105 101 G4ShortLivedConstructor pShortLivedConstruct 106 G4ShortLivedConstructor pShortLivedConstructor; 102 pShortLivedConstructor.ConstructParticle(); 107 pShortLivedConstructor.ConstructParticle(); 103 } 108 } 104 109 105 //....oooOO0OOooo........oooOO0OOooo........oo 110 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 106 111 107 void PhysicsList::ConstructProcess() 112 void PhysicsList::ConstructProcess() 108 { 113 { 109 // transportation 114 // transportation 110 // 115 // 111 AddTransportation(); 116 AddTransportation(); 112 << 117 113 // electromagnetic Physics List 118 // electromagnetic Physics List 114 // 119 // 115 fEmPhysicsList->ConstructProcess(); 120 fEmPhysicsList->ConstructProcess(); 116 if (fMuNuclPhysicsList) fMuNuclPhysicsList-> << 121 if(fMuNuclPhysicsList) fMuNuclPhysicsList->ConstructProcess(); 117 } 122 } 118 123 119 //....oooOO0OOooo........oooOO0OOooo........oo 124 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 120 125 121 void PhysicsList::AddPhysicsList(const G4Strin 126 void PhysicsList::AddPhysicsList(const G4String& name) 122 { 127 { 123 if (verboseLevel > -1) { << 128 if (verboseLevel>1) { 124 G4cout << "PhysicsList::AddPhysicsList: <" 129 G4cout << "PhysicsList::AddPhysicsList: <" << name << ">" << G4endl; 125 } 130 } 126 131 127 if (name == fEmName) return; 132 if (name == fEmName) return; 128 133 129 if (name == "emstandard_opt0") { << 134 if (name == "standard" && name != fEmName) { 130 fEmName = name; << 135 131 delete fEmPhysicsList; << 132 fEmPhysicsList = new G4EmStandardPhysics() << 133 } << 134 else if (name == "emstandard_opt4") { << 135 fEmName = name; << 136 delete fEmPhysicsList; << 137 fEmPhysicsList = new G4EmStandardPhysics_o << 138 } << 139 else if (name == "local") { << 140 fEmName = name; 136 fEmName = name; 141 delete fEmPhysicsList; 137 delete fEmPhysicsList; 142 fEmPhysicsList = new PhysListEmStandard(na 138 fEmPhysicsList = new PhysListEmStandard(name); 143 } << 139 144 else if (name == "muNucl") { << 140 } else if (name == "muNucl") { 145 fMuNuclPhysicsList = new MuNuclearBuilder( 141 fMuNuclPhysicsList = new MuNuclearBuilder(name); 146 } << 142 147 else { << 143 } else { >> 144 148 G4cout << "PhysicsList::AddPhysicsList: <" 145 G4cout << "PhysicsList::AddPhysicsList: <" << name << ">" 149 << " is not defined" << G4endl; << 146 << " is not defined" >> 147 << G4endl; 150 } 148 } 151 } 149 } 152 150 153 //....oooOO0OOooo........oooOO0OOooo........oo 151 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... >> 152 >> 153 void PhysicsList::SetCuts() >> 154 { >> 155 >> 156 if (verboseLevel >0){ >> 157 G4cout << "PhysicsList::SetCuts:"; >> 158 G4cout << "CutLength : " << G4BestUnit(defaultCutValue,"Length") << G4endl; >> 159 } >> 160 >> 161 // set cut values for gamma at first and for e- second and next for e+, >> 162 // because some processes for e+/e- need cut values for gamma >> 163 SetCutValue(fCutForGamma, "gamma"); >> 164 SetCutValue(fCutForElectron, "e-"); >> 165 SetCutValue(fCutForPositron, "e+"); >> 166 >> 167 if (verboseLevel>0) DumpCutValuesTable(); >> 168 } >> 169 >> 170 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... >> 171 >> 172 #include "G4Gamma.hh" >> 173 #include "G4Electron.hh" >> 174 #include "G4Positron.hh" >> 175 >> 176 void PhysicsList::SetCutForGamma(G4double cut) >> 177 { >> 178 fCutForGamma = cut; >> 179 SetParticleCuts(fCutForGamma, G4Gamma::Gamma()); >> 180 } >> 181 >> 182 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... >> 183 >> 184 void PhysicsList::SetCutForElectron(G4double cut) >> 185 { >> 186 fCutForElectron = cut; >> 187 SetParticleCuts(fCutForElectron, G4Electron::Electron()); >> 188 } >> 189 >> 190 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... >> 191 >> 192 void PhysicsList::SetCutForPositron(G4double cut) >> 193 { >> 194 fCutForPositron = cut; >> 195 SetParticleCuts(fCutForPositron, G4Positron::Positron()); >> 196 } >> 197 >> 198 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... >> 199 154 200