Geant4 Cross Reference |
1 // 2 // ******************************************************************** 3 // * License and Disclaimer * 4 // * * 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. * 10 // * * 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitation of liability. * 17 // * * 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************************************** 25 // 26 /// \file exoticphysics/dmparticle/src/PhysicsList.cc 27 /// \brief Implementation of the PhysicsList class 28 // 29 // 30 ///////////////////////////////////////////////// 31 // 32 // ClassName: PhysicsList 33 // 34 // Authors: 01.06.17 V.Ivanchenko 35 // 36 // 37 /////////////////////////////////////////// 38 39 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 40 41 #include "PhysicsList.hh" 42 43 #include "PhysicsListMessenger.hh" 44 45 #include "G4DecayPhysics.hh" 46 #include "G4EmConfigurator.hh" 47 #include "G4EmLivermorePhysics.hh" 48 #include "G4EmLowEPPhysics.hh" 49 #include "G4EmParameters.hh" 50 #include "G4EmPenelopePhysics.hh" 51 #include "G4EmStandardPhysics.hh" 52 #include "G4EmStandardPhysicsGS.hh" 53 #include "G4EmStandardPhysicsSS.hh" 54 #include "G4EmStandardPhysicsWVI.hh" 55 #include "G4EmStandardPhysics_option1.hh" 56 #include "G4EmStandardPhysics_option2.hh" 57 #include "G4EmStandardPhysics_option3.hh" 58 #include "G4EmStandardPhysics_option4.hh" 59 #include "G4LDMBremModel.hh" 60 #include "G4LDMBremsstrahlung.hh" 61 #include "G4LDMHi.hh" 62 #include "G4LDMHiBar.hh" 63 #include "G4LDMPhoton.hh" 64 #include "G4LossTableManager.hh" 65 #include "G4ParticleTable.hh" 66 #include "G4ParticleTypes.hh" 67 #include "G4ProcessManager.hh" 68 #include "G4ProductionCutsTable.hh" 69 #include "G4SystemOfUnits.hh" 70 #include "G4UnitsTable.hh" 71 72 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 73 74 PhysicsList::PhysicsList() 75 : G4VModularPhysicsList(), 76 fLDMPhotonMass(0.5 * CLHEP::GeV), 77 fLDMHiMass(0.1 * CLHEP::GeV), 78 fLDMPhoton(true), 79 fLDMHi(false) 80 { 81 fMessenger = new PhysicsListMessenger(this); 82 83 // Decay Physics is always defined 84 fDecayPhysicsList = new G4DecayPhysics(); 85 86 // EM physics 87 fEmName = G4String("emstandard_opt0"); 88 fEmPhysicsList = new G4EmStandardPhysics(1); 89 90 SetVerboseLevel(1); 91 } 92 93 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 94 95 PhysicsList::~PhysicsList() 96 { 97 delete fMessenger; 98 delete fDecayPhysicsList; 99 delete fEmPhysicsList; 100 } 101 102 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 103 104 void PhysicsList::ConstructParticle() 105 { 106 SetDefaultCutValue(1 * mm); 107 fDecayPhysicsList->ConstructParticle(); 108 if (fLDMPhoton) { 109 G4LDMPhoton::LDMPhotonDefinition(fLDMPhotonMass); 110 } 111 if (fLDMHi) { 112 G4LDMHi::LDMHiDefinition(fLDMHiMass); 113 G4LDMHiBar::LDMHiBarDefinition(fLDMHiMass); 114 } 115 } 116 117 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 118 119 void PhysicsList::ConstructProcess() 120 { 121 AddTransportation(); 122 fEmPhysicsList->ConstructProcess(); 123 fDecayPhysicsList->ConstructProcess(); 124 AddDarkMatter(); 125 } 126 127 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 128 129 void PhysicsList::AddPhysicsList(const G4String& name) 130 { 131 // G4cout << "PhysicsList::AddPhysicsList: <" << name << ">" << G4endl; 132 if (name == fEmName) { 133 return; 134 } 135 else if (name == "emstandard_opt0") { 136 fEmName = name; 137 delete fEmPhysicsList; 138 fEmPhysicsList = new G4EmStandardPhysics(); 139 } 140 else if (name == "emstandard_opt1") { 141 fEmName = name; 142 delete fEmPhysicsList; 143 fEmPhysicsList = new G4EmStandardPhysics_option1(); 144 } 145 else if (name == "emstandard_opt2") { 146 fEmName = name; 147 delete fEmPhysicsList; 148 fEmPhysicsList = new G4EmStandardPhysics_option2(); 149 } 150 else if (name == "emstandard_opt3") { 151 fEmName = name; 152 delete fEmPhysicsList; 153 fEmPhysicsList = new G4EmStandardPhysics_option3(); 154 } 155 else if (name == "emstandard_opt4") { 156 fEmName = name; 157 delete fEmPhysicsList; 158 fEmPhysicsList = new G4EmStandardPhysics_option4(); 159 } 160 else if (name == "emstandardWVI") { 161 fEmName = name; 162 delete fEmPhysicsList; 163 fEmPhysicsList = new G4EmStandardPhysicsWVI(); 164 } 165 else if (name == "emstandardSS") { 166 fEmName = name; 167 delete fEmPhysicsList; 168 fEmPhysicsList = new G4EmStandardPhysicsSS(); 169 } 170 else if (name == "emstandardGS") { 171 fEmName = name; 172 delete fEmPhysicsList; 173 174 fEmPhysicsList = new G4EmStandardPhysicsGS(); 175 } 176 else if (name == "emlivermore") { 177 fEmName = name; 178 delete fEmPhysicsList; 179 fEmPhysicsList = new G4EmLivermorePhysics(); 180 } 181 else if (name == "empenelope") { 182 fEmName = name; 183 delete fEmPhysicsList; 184 fEmPhysicsList = new G4EmPenelopePhysics(); 185 } 186 else if (name == "emlowenergy") { 187 fEmName = name; 188 delete fEmPhysicsList; 189 fEmPhysicsList = new G4EmLowEPPhysics(); 190 } 191 else { 192 G4cout << "PhysicsList::AddPhysicsList: <" << name << ">" 193 << " is not defined" << G4endl; 194 return; 195 } 196 } 197 198 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 199 200 void PhysicsList::SetCuts() 201 { 202 G4ProductionCutsTable::GetProductionCutsTable()->SetEnergyRange(100. * eV, 1e5); 203 if (verboseLevel > 0) { 204 DumpCutValuesTable(); 205 } 206 } 207 208 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 209 210 void PhysicsList::AddDarkMatter() 211 { 212 G4cout << " PhysicsList::AddDarkMatter: " << fLDMPhoton << G4endl; 213 if (fLDMPhoton) { 214 // G4PhysicsListHelper* ph = G4PhysicsListHelper::GetPhysicsListHelper(); 215 G4LDMBremsstrahlung* ldmb = new G4LDMBremsstrahlung(); 216 G4ParticleDefinition* p = G4Proton::Proton(); 217 G4ProcessManager* man = p->GetProcessManager(); 218 man->AddProcess(ldmb, -1, -1, 5); 219 } 220 } 221 222 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 223 224 void PhysicsList::SetLDMPhotonMass(G4double val) 225 { 226 G4cout << "### PhysicsList::SetLDMPhotonMass: new value " << val / GeV << " GeV" << G4endl; 227 fLDMPhotonMass = val; 228 fLDMPhoton = true; 229 } 230 231 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 232 233 void PhysicsList::SetLDMHiMass(G4double val) 234 { 235 fLDMHiMass = val; 236 fLDMHi = true; 237 } 238 239 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 240