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 SAXSPhysicsList.cc 27 /// \brief Implementation of the SAXSPhysicsList class 28 // 29 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 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........oooOO0OOooo........oooOO0OOooo...... 67 68 SAXSPhysicsList::SAXSPhysicsList() : G4VUserPhysicsList(), fUseMIFlag(true), fPMessenger(0) 69 { 70 G4cout << "### PhysicsList instantiated ###" << G4endl; 71 72 G4LossTableManager::Instance(); 73 74 // set default cuts value 75 defaultCutValue = 0.1 * mm; 76 77 // define the messenger 78 fPMessenger = new SAXSPhysicsListMessenger(this); 79 80 // set verbosity 81 SetVerboseLevel(1); 82 83 // particle list 84 fParticleList = new G4DecayPhysics(verboseLevel); 85 86 // EM Physics 87 fEmPhysicsList = new G4EmPenelopePhysics(verboseLevel); 88 } 89 90 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 91 92 SAXSPhysicsList::~SAXSPhysicsList() 93 { 94 delete fPMessenger; 95 } 96 97 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 98 99 void SAXSPhysicsList::ConstructParticle() 100 { 101 fParticleList->ConstructParticle(); 102 } 103 104 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 105 106 void SAXSPhysicsList::ConstructProcess() 107 { 108 // transportation 109 AddTransportation(); 110 111 // Atomic deexcitation 112 G4EmParameters* param = G4EmParameters::Instance(); 113 param->SetFluo(true); // Activate deexcitation processes and fluorescence 114 param->SetAuger(true); // Activate Auger effect if deexcitation is activated 115 param->SetPixe(true); // Activate Particle Induced X-Ray Emission (PIXE) 116 117 // EM physics 118 fEmPhysicsList->ConstructProcess(); 119 } 120 121 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 122 123 void SAXSPhysicsList::SelectPhysicsList(const G4String& name) 124 { 125 if (verboseLevel > 1) { 126 G4cout << "### PhysicsList::SelectPhysicsList: <" << name << "> ###" << G4endl; 127 } 128 129 if (name == "emstandard") { 130 delete fEmPhysicsList; 131 fEmPhysicsList = new G4EmStandardPhysics(verboseLevel); 132 G4cout << "### selected Standard PhysicsList ###" << G4endl; 133 } 134 else if (name == "emstandard_opt4") { 135 delete fEmPhysicsList; 136 fEmPhysicsList = new G4EmStandardPhysics_option4(verboseLevel); 137 G4cout << "### selected Standard_option4 PhysicsList ###" << G4endl; 138 } 139 else if (name == "emlivermore") { 140 delete fEmPhysicsList; 141 fEmPhysicsList = new G4EmLivermorePhysics(verboseLevel); 142 G4cout << "### selected Livermore PhysicsList ###" << G4endl; 143 } 144 else if (name == "empenelope") { 145 delete fEmPhysicsList; 146 fEmPhysicsList = new G4EmPenelopePhysics(verboseLevel); 147 G4cout << "### selected Penelope PhysicsList ###" << G4endl; 148 } 149 else if (name == "empenelopeMI") { 150 delete fEmPhysicsList; 151 fEmPhysicsList = new G4EmPenelopePhysicsMI(verboseLevel, "G4EmPenelopeMI", fUseMIFlag); 152 G4cout << "### selected Penelope PhysicsList with MI effects ###" << G4endl; 153 } 154 else if (name == "emlowenergy") { 155 delete fEmPhysicsList; 156 fEmPhysicsList = new G4EmLowEPPhysics(verboseLevel); 157 G4cout << "### selected LowEP PhysicsList ###" << G4endl; 158 } 159 else { 160 G4cout << "### PhysicsList::SelectPhysicsList: <" << name << ">" 161 << " is not defined ###" << G4endl; 162 } 163 } 164 165 void SAXSPhysicsList::SetDefaultCutsValue(G4double value) 166 { 167 // define a new default cuts value 168 defaultCutValue = value; 169 } 170 171 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 172