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 26 27 #include "G4RunManager.hh" 27 #include "G4RunManager.hh" 28 #include "globals.hh" 28 #include "globals.hh" 29 #include "G4ProcessManager.hh" 29 #include "G4ProcessManager.hh" 30 #include "G4Region.hh" 30 #include "G4Region.hh" 31 #include "G4RegionStore.hh" 31 #include "G4RegionStore.hh" 32 32 33 #include "G4ParticleDefinition.hh" 33 #include "G4ParticleDefinition.hh" 34 #include "G4ParticleTypes.hh" 34 #include "G4ParticleTypes.hh" 35 #include "G4ParticleTable.hh" 35 #include "G4ParticleTable.hh" 36 36 37 #include "G4PhysListFactory.hh" 37 #include "G4PhysListFactory.hh" 38 #include "GammaKnifePhysicsList.hh" 38 #include "GammaKnifePhysicsList.hh" 39 #include "GammaKnifePhysicsListMessenger.hh" 39 #include "GammaKnifePhysicsListMessenger.hh" 40 #include "GammaKnifeParticles.hh" 40 #include "GammaKnifeParticles.hh" 41 #include "G4SystemOfUnits.hh" 41 #include "G4SystemOfUnits.hh" 42 42 43 43 44 // Physic lists (contained inside the Geant4 s 44 // Physic lists (contained inside the Geant4 source code, in the 'physicslists folder') 45 #include "G4EmStandardPhysics_option3.hh" 45 #include "G4EmStandardPhysics_option3.hh" 46 #include "G4EmLivermorePhysics.hh" 46 #include "G4EmLivermorePhysics.hh" 47 #include "G4EmPenelopePhysics.hh" 47 #include "G4EmPenelopePhysics.hh" 48 #include "G4EmExtraPhysics.hh" 48 #include "G4EmExtraPhysics.hh" 49 49 50 #include "G4DecayPhysics.hh" 50 #include "G4DecayPhysics.hh" 51 #include "G4RadioactiveDecayPhysics.hh" 51 #include "G4RadioactiveDecayPhysics.hh" 52 52 53 #include "G4LossTableManager.hh" 53 #include "G4LossTableManager.hh" 54 #include "G4UnitsTable.hh" << 55 54 56 GammaKnifePhysicsList::GammaKnifePhysicsList() 55 GammaKnifePhysicsList::GammaKnifePhysicsList(): G4VModularPhysicsList() 57 { 56 { 58 G4LossTableManager::Instance(); 57 G4LossTableManager::Instance(); 59 defaultCutValue = 1.*mm; 58 defaultCutValue = 1.*mm; 60 cutForGamma = defaultCutValue; 59 cutForGamma = defaultCutValue; 61 cutForElectron = defaultCutValue; 60 cutForElectron = defaultCutValue; 62 cutForPositron = defaultCutValue; 61 cutForPositron = defaultCutValue; 63 62 64 radioactiveDecayIsRegistered = false; 63 radioactiveDecayIsRegistered = false; 65 64 66 65 67 messenger = new GammaKnifePhysicsListMesseng 66 messenger = new GammaKnifePhysicsListMessenger(this); 68 SetVerboseLevel(1); 67 SetVerboseLevel(1); 69 68 70 // EM physics 69 // EM physics 71 emPhysicsList = new G4EmStandardPhysics_opti 70 emPhysicsList = new G4EmStandardPhysics_option3(1); 72 emName = G4String("emstandard_opt3"); 71 emName = G4String("emstandard_opt3"); 73 72 74 // Decay physics and all particles 73 // Decay physics and all particles 75 decPhysicsList = new G4DecayPhysics(); 74 decPhysicsList = new G4DecayPhysics(); 76 } 75 } 77 76 78 GammaKnifePhysicsList::~GammaKnifePhysicsList( 77 GammaKnifePhysicsList::~GammaKnifePhysicsList() 79 { 78 { 80 delete messenger; 79 delete messenger; 81 delete emPhysicsList; 80 delete emPhysicsList; 82 delete decPhysicsList; 81 delete decPhysicsList; 83 for(size_t i=0; i<hadronPhys.size(); i++) 82 for(size_t i=0; i<hadronPhys.size(); i++) 84 delete hadronPhys[i]; 83 delete hadronPhys[i]; 85 } 84 } 86 85 87 void GammaKnifePhysicsList::ConstructParticle( 86 void GammaKnifePhysicsList::ConstructParticle() 88 { 87 { 89 decPhysicsList->ConstructParticle(); 88 decPhysicsList->ConstructParticle(); 90 emPhysicsList->ConstructParticle(); 89 emPhysicsList->ConstructParticle(); 91 } 90 } 92 91 93 void GammaKnifePhysicsList::ConstructProcess() 92 void GammaKnifePhysicsList::ConstructProcess() 94 { 93 { 95 // transportation 94 // transportation 96 AddTransportation(); 95 AddTransportation(); 97 96 98 // electromagnetic physics list 97 // electromagnetic physics list 99 emPhysicsList->ConstructProcess(); 98 emPhysicsList->ConstructProcess(); 100 99 101 // decay physics list 100 // decay physics list 102 decPhysicsList->ConstructProcess(); 101 decPhysicsList->ConstructProcess(); 103 102 104 // hadronic physics lists 103 // hadronic physics lists 105 for(size_t i=0; i<hadronPhys.size(); i++) { 104 for(size_t i=0; i<hadronPhys.size(); i++) { 106 hadronPhys[i] -> ConstructProcess(); 105 hadronPhys[i] -> ConstructProcess(); 107 } 106 } 108 107 109 } 108 } 110 109 111 110 112 void GammaKnifePhysicsList::AddPhysicsList(con 111 void GammaKnifePhysicsList::AddPhysicsList(const G4String& name) 113 { 112 { 114 113 115 if (verboseLevel>1) { 114 if (verboseLevel>1) { 116 G4cout << "PhysicsList::AddPhysicsList: <" < 115 G4cout << "PhysicsList::AddPhysicsList: <" << name << ">" << G4endl; 117 } 116 } 118 if (name == emName) return; 117 if (name == emName) return; 119 118 120 ////////////////////////////////////////// 119 ///////////////////////////////////////////////////////////////////////////// 121 // ELECTROMAGNETIC MODELS 120 // ELECTROMAGNETIC MODELS 122 ////////////////////////////////////////// 121 ///////////////////////////////////////////////////////////////////////////// 123 if (name == "standard_opt3") { 122 if (name == "standard_opt3") { 124 emName = name; 123 emName = name; 125 delete emPhysicsList; 124 delete emPhysicsList; 126 emPhysicsList = new G4EmStandardPhysics_opti 125 emPhysicsList = new G4EmStandardPhysics_option3(); 127 G4RunManager::GetRunManager() -> PhysicsHasB 126 G4RunManager::GetRunManager() -> PhysicsHasBeenModified(); 128 G4cout << "THE FOLLOWING ELECTROMAGNETIC PHY 127 G4cout << "THE FOLLOWING ELECTROMAGNETIC PHYSICS LIST HAS BEEN ACTIVATED: G4EmStandardPhysics_option3" << G4endl; 129 128 130 } else if (name == "LowE_Livermore") { 129 } else if (name == "LowE_Livermore") { 131 emName = name; 130 emName = name; 132 delete emPhysicsList; 131 delete emPhysicsList; 133 emPhysicsList = new G4EmLivermorePhysics(); 132 emPhysicsList = new G4EmLivermorePhysics(); 134 G4RunManager::GetRunManager()-> PhysicsHasBe 133 G4RunManager::GetRunManager()-> PhysicsHasBeenModified(); 135 G4cout << "THE FOLLOWING ELECTROMAGNETIC PHY 134 G4cout << "THE FOLLOWING ELECTROMAGNETIC PHYSICS LIST HAS BEEN ACTIVATED: G4EmLivermorePhysics" << G4endl; 136 135 137 } else if (name == "LowE_Penelope") { 136 } else if (name == "LowE_Penelope") { 138 emName = name; 137 emName = name; 139 delete emPhysicsList; 138 delete emPhysicsList; 140 emPhysicsList = new G4EmPenelopePhysics(); 139 emPhysicsList = new G4EmPenelopePhysics(); 141 G4RunManager::GetRunManager()-> PhysicsHasBe 140 G4RunManager::GetRunManager()-> PhysicsHasBeenModified(); 142 G4cout << "THE FOLLOWING ELECTROMAGNETIC PHY 141 G4cout << "THE FOLLOWING ELECTROMAGNETIC PHYSICS LIST HAS BEEN ACTIVATED: G4EmLivermorePhysics" << G4endl; 143 142 144 //////////////////////////////////////////// 143 ///////////////////////////////////////////////////////////////////////////// 145 // HADRONIC MODELS 144 // HADRONIC MODELS 146 //////////////////////////////////////////// 145 ///////////////////////////////////////////////////////////////////////////// 147 146 148 147 149 } else if (name == "decay") 148 } else if (name == "decay") 150 { 149 { 151 hadronPhys.push_back(new G4DecayPhysics()); 150 hadronPhys.push_back(new G4DecayPhysics()); 152 //radioactiveDecayIsRegistered = true; 151 //radioactiveDecayIsRegistered = true; 153 } 152 } 154 else if (name == "radioactive_decay" && !r 153 else if (name == "radioactive_decay" && !radioactiveDecayIsRegistered ) 155 { 154 { 156 hadronPhys.push_back(new G4RadioactiveDecayP 155 hadronPhys.push_back(new G4RadioactiveDecayPhysics()); 157 radioactiveDecayIsRegistered = true; 156 radioactiveDecayIsRegistered = true; 158 } 157 } 159 else { 158 else { 160 159 161 G4cout << "PhysicsList::AddPhysicsList: <" < 160 G4cout << "PhysicsList::AddPhysicsList: <" << name << ">" 162 << " is not defined" 161 << " is not defined" 163 << G4endl; 162 << G4endl; 164 } 163 } 165 164 166 } 165 } 167 166 168 167 169 ////////////////////////////////////////////// 168 ///////////////////////////////////////////////////////////////////////////// 170 void GammaKnifePhysicsList::SetCuts() 169 void GammaKnifePhysicsList::SetCuts() 171 { 170 { 172 171 173 if (verboseLevel >0){ 172 if (verboseLevel >0){ 174 G4cout << "PhysicsList::SetCuts:"; 173 G4cout << "PhysicsList::SetCuts:"; 175 G4cout << "CutLength : " << G4BestUnit(def 174 G4cout << "CutLength : " << G4BestUnit(defaultCutValue,"Length") << G4endl; 176 } 175 } 177 176 178 // set cut values for gamma at first and for 177 // set cut values for gamma at first and for e- second and next for e+, 179 // because some processes for e+/e- need cut 178 // because some processes for e+/e- need cut values for gamma 180 SetCutValue(cutForGamma, "gamma"); 179 SetCutValue(cutForGamma, "gamma"); 181 SetCutValue(cutForElectron, "e-"); 180 SetCutValue(cutForElectron, "e-"); 182 SetCutValue(cutForPositron, "e+"); 181 SetCutValue(cutForPositron, "e+"); 183 182 184 183 185 if (verboseLevel>0) DumpCutValuesTable(); 184 if (verboseLevel>0) DumpCutValuesTable(); 186 } 185 } 187 186 188 ////////////////////////////////////////////// 187 ///////////////////////////////////////////////////////////////////////////// 189 void GammaKnifePhysicsList::SetCutForGamma(G4d 188 void GammaKnifePhysicsList::SetCutForGamma(G4double cut) 190 { 189 { 191 cutForGamma = cut; 190 cutForGamma = cut; 192 SetParticleCuts(cutForGamma, G4Gamma::Gamma( 191 SetParticleCuts(cutForGamma, G4Gamma::Gamma()); 193 } 192 } 194 193 195 ////////////////////////////////////////////// 194 ///////////////////////////////////////////////////////////////////////////// 196 void GammaKnifePhysicsList::SetCutForElectron( 195 void GammaKnifePhysicsList::SetCutForElectron(G4double cut) 197 { 196 { 198 cutForElectron = cut; 197 cutForElectron = cut; 199 SetParticleCuts(cutForElectron, G4Electron:: 198 SetParticleCuts(cutForElectron, G4Electron::Electron()); 200 } 199 } 201 200 202 ////////////////////////////////////////////// 201 ///////////////////////////////////////////////////////////////////////////// 203 void GammaKnifePhysicsList::SetCutForPositron( 202 void GammaKnifePhysicsList::SetCutForPositron(G4double cut) 204 { 203 { 205 cutForPositron = cut; 204 cutForPositron = cut; 206 SetParticleCuts(cutForPositron, G4Positron:: 205 SetParticleCuts(cutForPositron, G4Positron::Positron()); 207 } 206 } 208 207 209 208