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 medical/fanoCavity/src/PhysicsList.c << 26 // $Id: PhysicsList.cc,v 1.19 2010-01-19 17:28:20 maire Exp $ 27 /// \brief Implementation of the PhysicsList c << 27 // GEANT4 tag $Name: not supported by cvs2svn $ 28 // << 29 // 28 // 30 //....oooOO0OOooo........oooOO0OOooo........oo 29 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 31 //....oooOO0OOooo........oooOO0OOooo........oo 30 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 32 31 33 #include "PhysicsList.hh" 32 #include "PhysicsList.hh" >> 33 #include "PhysicsListMessenger.hh" 34 34 35 #include "PhysListEmStandard_GS.hh" << 36 #include "PhysListEmStandard_SS.hh" << 37 #include "PhysListEmStandard_WVI.hh" << 38 #include "PhysListEmStandard_option0.hh" 35 #include "PhysListEmStandard_option0.hh" 39 #include "PhysListEmStandard_option3.hh" 36 #include "PhysListEmStandard_option3.hh" 40 #include "PhysListEmStandard_option4.hh" << 37 #include "PhysListEmStandard_GS.hh" 41 #include "PhysicsListMessenger.hh" << 38 #include "PhysListEmStandard_WVI.hh" >> 39 #include "PhysListEmStandard_SS.hh" >> 40 42 #include "StepMax.hh" 41 #include "StepMax.hh" 43 42 44 #include "G4EmBuilder.hh" << 45 #include "G4LossTableManager.hh" << 46 #include "G4ParticleDefinition.hh" 43 #include "G4ParticleDefinition.hh" >> 44 47 #include "G4ProcessManager.hh" 45 #include "G4ProcessManager.hh" 48 #include "G4SystemOfUnits.hh" << 46 #include "G4LossTableManager.hh" 49 #include "G4UnitsTable.hh" << 47 >> 48 // Bosons >> 49 #include "G4ChargedGeantino.hh" >> 50 #include "G4Geantino.hh" >> 51 #include "G4Gamma.hh" >> 52 >> 53 // leptons >> 54 #include "G4Electron.hh" >> 55 #include "G4Positron.hh" >> 56 >> 57 // Hadrons >> 58 #include "G4Proton.hh" >> 59 50 60 51 //....oooOO0OOooo........oooOO0OOooo........oo 61 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 52 62 53 PhysicsList::PhysicsList(DetectorConstruction* << 63 PhysicsList::PhysicsList(DetectorConstruction* det) >> 64 : G4VModularPhysicsList(), detector(det) 54 { 65 { 55 G4LossTableManager::Instance(); 66 G4LossTableManager::Instance(); 56 fMessenger = new PhysicsListMessenger(this); << 67 pMessenger = new PhysicsListMessenger(this); 57 << 68 58 // EM physics 69 // EM physics 59 fEmName = G4String("standard_opt3"); << 70 emName = G4String("standard_opt3"); 60 fEmPhysicsList = new PhysListEmStandard_opti << 71 emPhysicsList = new PhysListEmStandard_option3(emName,detector); >> 72 >> 73 defaultCutValue = 10*km; 61 74 62 defaultCutValue = 10 * km; << 75 SetVerboseLevel(1); 63 << 76 64 SetVerboseLevel(1); << 77 G4LossTableManager::Instance(); 65 } 78 } 66 79 67 //....oooOO0OOooo........oooOO0OOooo........oo 80 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 68 81 69 PhysicsList::~PhysicsList() 82 PhysicsList::~PhysicsList() 70 { 83 { 71 delete fEmPhysicsList; << 84 delete emPhysicsList; 72 delete fMessenger; << 85 delete pMessenger; 73 } 86 } 74 87 75 //....oooOO0OOooo........oooOO0OOooo........oo 88 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 76 89 77 void PhysicsList::ConstructParticle() 90 void PhysicsList::ConstructParticle() 78 { 91 { 79 G4EmBuilder::ConstructMinimalEmSet(); << 92 // pseudo-particles >> 93 G4Geantino::GeantinoDefinition(); >> 94 G4ChargedGeantino::ChargedGeantinoDefinition(); >> 95 >> 96 // gamma >> 97 G4Gamma::GammaDefinition(); >> 98 >> 99 // leptons >> 100 G4Electron::ElectronDefinition(); >> 101 G4Positron::PositronDefinition(); >> 102 >> 103 // baryons >> 104 G4Proton::ProtonDefinition(); 80 } 105 } 81 106 82 //....oooOO0OOooo........oooOO0OOooo........oo 107 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 83 108 84 void PhysicsList::ConstructProcess() 109 void PhysicsList::ConstructProcess() 85 { 110 { 86 AddTransportation(); 111 AddTransportation(); 87 fEmPhysicsList->ConstructProcess(); << 112 emPhysicsList->ConstructProcess(); 88 113 89 AddStepMax(); 114 AddStepMax(); 90 } 115 } 91 116 92 //....oooOO0OOooo........oooOO0OOooo........oo 117 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 93 118 94 void PhysicsList::AddStepMax() 119 void PhysicsList::AddStepMax() 95 { 120 { 96 // Step limitation seen as a process 121 // Step limitation seen as a process 97 StepMax* stepMaxProcess = new StepMax(); 122 StepMax* stepMaxProcess = new StepMax(); 98 123 99 auto particleIterator = GetParticleIterator( << 124 theParticleIterator->reset(); 100 particleIterator->reset(); << 125 while ((*theParticleIterator)()){ 101 while ((*particleIterator)()) { << 126 G4ParticleDefinition* particle = theParticleIterator->value(); 102 G4ParticleDefinition* particle = particleI << 127 G4ProcessManager* pmanager = particle->GetProcessManager(); 103 G4ProcessManager* pmanager = particle->Get << 128 104 << 129 if (stepMaxProcess->IsApplicable(*particle) && !particle->IsShortLived()) 105 if (stepMaxProcess->IsApplicable(*particle << 130 { 106 pmanager->AddDiscreteProcess(stepMaxProc << 131 pmanager ->AddDiscreteProcess(stepMaxProcess); 107 } << 132 } 108 } 133 } 109 } 134 } 110 135 111 //....oooOO0OOooo........oooOO0OOooo........oo 136 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 112 137 113 void PhysicsList::AddPhysicsList(const G4Strin 138 void PhysicsList::AddPhysicsList(const G4String& name) 114 { 139 { 115 if (verboseLevel > 0) { << 140 if (verboseLevel>-1) { 116 G4cout << "PhysicsList::AddPhysicsList: <" 141 G4cout << "PhysicsList::AddPhysicsList: <" << name << ">" << G4endl; 117 } 142 } 118 143 119 if (name == fEmName) return; << 144 if (name == emName) return; 120 145 121 if (name == "standard_opt0") { 146 if (name == "standard_opt0") { 122 fEmName = name; << 147 123 delete fEmPhysicsList; << 148 emName = name; 124 fEmPhysicsList = new PhysListEmStandard_op << 149 delete emPhysicsList; 125 } << 150 emPhysicsList = new PhysListEmStandard_option0(name,detector); 126 else if (name == "standard_opt3") { << 151 127 fEmName = name; << 152 } else if (name == "standard_opt3") { 128 delete fEmPhysicsList; << 153 129 fEmPhysicsList = new PhysListEmStandard_op << 154 emName = name; 130 } << 155 delete emPhysicsList; 131 else if (name == "standard_opt4") { << 156 emPhysicsList = new PhysListEmStandard_option3(name,detector); 132 fEmName = name; << 157 133 delete fEmPhysicsList; << 158 } else if (name == "standard_GS") { 134 fEmPhysicsList = new PhysListEmStandard_op << 159 135 } << 160 emName = name; 136 else if (name == "standard_GS") { << 161 delete emPhysicsList; 137 fEmName = name; << 162 emPhysicsList = new PhysListEmStandard_GS(name,detector); 138 delete fEmPhysicsList; << 163 139 fEmPhysicsList = new PhysListEmStandard_GS << 164 } else if (name == "standard_WVI") { 140 } << 165 141 else if (name == "standard_WVI") { << 166 emName = name; 142 fEmName = name; << 167 delete emPhysicsList; 143 delete fEmPhysicsList; << 168 emPhysicsList = new PhysListEmStandard_WVI(name,detector); 144 fEmPhysicsList = new PhysListEmStandard_WV << 169 145 } << 170 } else if (name == "standard_SS") { 146 else if (name == "standard_SS") { << 171 147 fEmName = name; << 172 emName = name; 148 delete fEmPhysicsList; << 173 delete emPhysicsList; 149 fEmPhysicsList = new PhysListEmStandard_SS << 174 emPhysicsList = new PhysListEmStandard_SS(name,detector); 150 } << 175 } else { 151 else { << 176 152 G4cout << "PhysicsList::AddPhysicsList: <" 177 G4cout << "PhysicsList::AddPhysicsList: <" << name << ">" 153 << " is not defined" << G4endl; << 178 << " is not defined" >> 179 << G4endl; 154 } 180 } 155 } 181 } 156 182 157 //....oooOO0OOooo........oooOO0OOooo........oo 183 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 158 184 >> 185 #include "G4UnitsTable.hh" >> 186 159 void PhysicsList::SetCuts() 187 void PhysicsList::SetCuts() 160 { 188 { 161 if (verboseLevel > 0) { << 189 if (verboseLevel >0){ 162 G4cout << "PhysicsList::SetCuts:"; 190 G4cout << "PhysicsList::SetCuts:"; 163 G4cout << "CutLength : " << G4BestUnit(def << 191 G4cout << "CutLength : " << G4BestUnit(defaultCutValue,"Length") << G4endl; 164 } 192 } 165 << 193 166 // set cut values for gamma at first and for 194 // set cut values for gamma at first and for e- second and next for e+, 167 // because some processes for e+/e- need cut << 195 // because some processes for e+/e- need cut values for gamma 168 SetCutValue(defaultCutValue, "gamma"); 196 SetCutValue(defaultCutValue, "gamma"); 169 SetCutValue(defaultCutValue, "e-"); 197 SetCutValue(defaultCutValue, "e-"); 170 SetCutValue(defaultCutValue, "e+"); 198 SetCutValue(defaultCutValue, "e+"); 171 SetCutValue(defaultCutValue, "proton"); << 199 SetCutValue(defaultCutValue, "proton"); 172 } 200 } 173 201 174 //....oooOO0OOooo........oooOO0OOooo........oo 202 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 175 203