Geant4 Cross Reference |
1 // 1 2 // ******************************************* 3 // * License and Disclaimer 4 // * 5 // * The Geant4 software is copyright of th 6 // * the Geant4 Collaboration. It is provided 7 // * conditions of the Geant4 Software License 8 // * LICENSE and available at http://cern.ch/ 9 // * include a list of copyright holders. 10 // * 11 // * Neither the authors of this software syst 12 // * institutes,nor the agencies providing fin 13 // * work make any representation or warran 14 // * regarding this software system or assum 15 // * use. Please see the license in the file 16 // * for the full disclaimer and the limitatio 17 // * 18 // * This code implementation is the result 19 // * technical work of the GEANT4 collaboratio 20 // * By using, copying, modifying or distri 21 // * any work based on the software) you ag 22 // * use in resulting scientific publicati 23 // * acceptance of all terms of the Geant4 Sof 24 // ******************************************* 25 // 26 /// \file SAXSPhysicsList.cc 27 /// \brief Implementation of the SAXSPhysicsLi 28 // 29 //....oooOO0OOooo........oooOO0OOooo........oo 30 31 #include "SAXSPhysicsList.hh" 32 33 #include "SAXSPhysicsListMessenger.hh" 34 35 #include "G4ProcessManager.hh" 36 #include "G4SystemOfUnits.hh" 37 #include "G4Threading.hh" 38 #include "G4UnitsTable.hh" 39 #include "globals.hh" 40 41 // Particles 42 #include "G4ParticleDefinition.hh" 43 #include "G4ParticleTable.hh" 44 #include "G4ParticleTypes.hh" 45 46 // EM Physics Lists 47 #include "G4EmLivermorePhysics.hh" 48 #include "G4EmLowEPPhysics.hh" 49 #include "G4EmParameters.hh" 50 #include "G4EmPenelopePhysics.hh" 51 #include "G4EmPenelopePhysicsMI.hh" 52 #include "G4EmStandardPhysics.hh" 53 #include "G4EmStandardPhysics_option4.hh" 54 #include "G4LossTableManager.hh" 55 56 // Hadronic and Extra Physics Lists 57 #include "G4EmExtraPhysics.hh" 58 #include "G4HadronElasticPhysicsHP.hh" 59 #include "G4HadronPhysicsQGSP_BIC_HP.hh" 60 #include "G4IonPhysics.hh" 61 #include "G4StoppingPhysics.hh" 62 63 // Decays 64 #include "G4DecayPhysics.hh" 65 66 //....oooOO0OOooo........oooOO0OOooo........oo 67 68 SAXSPhysicsList::SAXSPhysicsList() : G4VUserPh 69 { 70 G4cout << "### PhysicsList instantiated ###" 71 72 G4LossTableManager::Instance(); 73 74 // set default cuts value 75 defaultCutValue = 0.1 * mm; 76 77 // define the messenger 78 fPMessenger = new SAXSPhysicsListMessenger(t 79 80 // set verbosity 81 SetVerboseLevel(1); 82 83 // particle list 84 fParticleList = new G4DecayPhysics(verboseLe 85 86 // EM Physics 87 fEmPhysicsList = new G4EmPenelopePhysics(ver 88 } 89 90 //....oooOO0OOooo........oooOO0OOooo........oo 91 92 SAXSPhysicsList::~SAXSPhysicsList() 93 { 94 delete fPMessenger; 95 } 96 97 //....oooOO0OOooo........oooOO0OOooo........oo 98 99 void SAXSPhysicsList::ConstructParticle() 100 { 101 fParticleList->ConstructParticle(); 102 } 103 104 //....oooOO0OOooo........oooOO0OOooo........oo 105 106 void SAXSPhysicsList::ConstructProcess() 107 { 108 // transportation 109 AddTransportation(); 110 111 // Atomic deexcitation 112 G4EmParameters* param = G4EmParameters::Inst 113 param->SetFluo(true); // Activate deexcitat 114 param->SetAuger(true); // Activate Auger ef 115 param->SetPixe(true); // Activate Particle 116 117 // EM physics 118 fEmPhysicsList->ConstructProcess(); 119 } 120 121 //....oooOO0OOooo........oooOO0OOooo........oo 122 123 void SAXSPhysicsList::SelectPhysicsList(const 124 { 125 if (verboseLevel > 1) { 126 G4cout << "### PhysicsList::SelectPhysicsL 127 } 128 129 if (name == "emstandard") { 130 delete fEmPhysicsList; 131 fEmPhysicsList = new G4EmStandardPhysics(v 132 G4cout << "### selected Standard PhysicsLi 133 } 134 else if (name == "emstandard_opt4") { 135 delete fEmPhysicsList; 136 fEmPhysicsList = new G4EmStandardPhysics_o 137 G4cout << "### selected Standard_option4 P 138 } 139 else if (name == "emlivermore") { 140 delete fEmPhysicsList; 141 fEmPhysicsList = new G4EmLivermorePhysics( 142 G4cout << "### selected Livermore PhysicsL 143 } 144 else if (name == "empenelope") { 145 delete fEmPhysicsList; 146 fEmPhysicsList = new G4EmPenelopePhysics(v 147 G4cout << "### selected Penelope PhysicsLi 148 } 149 else if (name == "empenelopeMI") { 150 delete fEmPhysicsList; 151 fEmPhysicsList = new G4EmPenelopePhysicsMI 152 G4cout << "### selected Penelope PhysicsLi 153 } 154 else if (name == "emlowenergy") { 155 delete fEmPhysicsList; 156 fEmPhysicsList = new G4EmLowEPPhysics(verb 157 G4cout << "### selected LowEP PhysicsList 158 } 159 else { 160 G4cout << "### PhysicsList::SelectPhysicsL 161 << " is not defined ###" << G4endl; 162 } 163 } 164 165 void SAXSPhysicsList::SetDefaultCutsValue(G4do 166 { 167 // define a new default cuts value 168 defaultCutValue = value; 169 } 170 171 //....oooOO0OOooo........oooOO0OOooo........oo 172