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