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