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 // ******************************************* 27 // ********************************************************************** 28 // * 28 // * * 29 // * GEANT 4 xray_telescope 29 // * GEANT 4 xray_telescope advanced example * 30 // * 30 // * * 31 // * MODULE: XrayTelPhysicsList.cc 31 // * MODULE: XrayTelPhysicsList.cc * 32 // * ------- 32 // * ------- * 33 // * 33 // * * 34 // * Version: 0.4 34 // * Version: 0.4 * 35 // * Date: 06/11/00 35 // * Date: 06/11/00 * 36 // * Author: R Nartallo 36 // * Author: R Nartallo * 37 // * Organisation: ESA/ESTEC, Noordwijk, 37 // * Organisation: ESA/ESTEC, Noordwijk, THe Netherlands * 38 // * 38 // * * 39 // ******************************************* 39 // ********************************************************************** 40 // 40 // 41 // CHANGE HISTORY 41 // CHANGE HISTORY 42 // -------------- 42 // -------------- 43 // 43 // 44 // 06.11.2000 R.Nartallo 44 // 06.11.2000 R.Nartallo 45 // - First implementation of xray_telescope Ph 45 // - First implementation of xray_telescope Physics list 46 // - Based on Chandra and XMM models 46 // - Based on Chandra and XMM models 47 // 47 // 48 // 48 // 49 // ******************************************* 49 // ********************************************************************** 50 50 51 #include "XrayTelPhysicsList.hh" << 52 << 53 #include "globals.hh" << 54 #include "G4SystemOfUnits.hh" << 55 #include "G4ParticleDefinition.hh" 51 #include "G4ParticleDefinition.hh" 56 #include "G4ParticleWithCuts.hh" 52 #include "G4ParticleWithCuts.hh" 57 #include "G4ProcessManager.hh" 53 #include "G4ProcessManager.hh" 58 #include "G4ProcessVector.hh" 54 #include "G4ProcessVector.hh" 59 #include "G4ParticleTypes.hh" 55 #include "G4ParticleTypes.hh" 60 #include "G4ParticleTable.hh" 56 #include "G4ParticleTable.hh" 61 #include "G4ShortLivedConstructor.hh" 57 #include "G4ShortLivedConstructor.hh" 62 #include "G4Material.hh" 58 #include "G4Material.hh" 63 #include "G4MaterialTable.hh" 59 #include "G4MaterialTable.hh" 64 #include "G4ios.hh" 60 #include "G4ios.hh" 65 // Hadrons 61 // Hadrons 66 #include "G4MesonConstructor.hh" 62 #include "G4MesonConstructor.hh" 67 #include "G4BaryonConstructor.hh" 63 #include "G4BaryonConstructor.hh" 68 #include "G4IonConstructor.hh" 64 #include "G4IonConstructor.hh" 69 65 >> 66 #include "globals.hh" >> 67 >> 68 #include "XrayTelPhysicsList.hh" >> 69 70 XrayTelPhysicsList::XrayTelPhysicsList(): G4V 70 XrayTelPhysicsList::XrayTelPhysicsList(): G4VUserPhysicsList() 71 { 71 { 72 // Default cut values 72 // Default cut values 73 defaultCutValue = 2.0*mm; 73 defaultCutValue = 2.0*mm; 74 cutForGamma = 1.0*m; 74 cutForGamma = 1.0*m; 75 cutForElectron = 1.0*m; 75 cutForElectron = 1.0*m; 76 76 77 SetVerboseLevel(1); 77 SetVerboseLevel(1); 78 } 78 } 79 79 80 XrayTelPhysicsList::~XrayTelPhysicsList() 80 XrayTelPhysicsList::~XrayTelPhysicsList() 81 {} 81 {} 82 82 83 void XrayTelPhysicsList::ConstructParticle() 83 void XrayTelPhysicsList::ConstructParticle() 84 { 84 { 85 // Here are constructed all particles 85 // Here are constructed all particles 86 ConstructBosons(); 86 ConstructBosons(); 87 ConstructLeptons(); 87 ConstructLeptons(); 88 ConstructMesons(); 88 ConstructMesons(); 89 ConstructBaryons(); 89 ConstructBaryons(); 90 ConstructIons(); 90 ConstructIons(); 91 ConstructAllShortLiveds(); 91 ConstructAllShortLiveds(); 92 } 92 } 93 93 94 // In this method, static member functions sho 94 // In this method, static member functions should be called for ALL particles to be used. 95 95 96 void XrayTelPhysicsList::ConstructBosons() 96 void XrayTelPhysicsList::ConstructBosons() 97 { 97 { 98 // pseudo-particles 98 // pseudo-particles 99 G4Geantino::GeantinoDefinition(); 99 G4Geantino::GeantinoDefinition(); 100 G4ChargedGeantino::ChargedGeantinoDefinition 100 G4ChargedGeantino::ChargedGeantinoDefinition(); 101 101 102 // gamma 102 // gamma 103 G4Gamma::GammaDefinition(); 103 G4Gamma::GammaDefinition(); 104 104 105 // optical photon 105 // optical photon 106 G4OpticalPhoton::OpticalPhotonDefinition(); 106 G4OpticalPhoton::OpticalPhotonDefinition(); 107 } 107 } 108 void XrayTelPhysicsList::ConstructLeptons() 108 void XrayTelPhysicsList::ConstructLeptons() 109 { 109 { 110 // leptons 110 // leptons 111 G4Electron::ElectronDefinition(); 111 G4Electron::ElectronDefinition(); 112 G4Positron::PositronDefinition(); 112 G4Positron::PositronDefinition(); 113 113 114 G4NeutrinoE::NeutrinoEDefinition(); 114 G4NeutrinoE::NeutrinoEDefinition(); 115 G4AntiNeutrinoE::AntiNeutrinoEDefinition(); 115 G4AntiNeutrinoE::AntiNeutrinoEDefinition(); 116 G4NeutrinoMu::NeutrinoMuDefinition(); 116 G4NeutrinoMu::NeutrinoMuDefinition(); 117 G4AntiNeutrinoMu::AntiNeutrinoMuDefinition() 117 G4AntiNeutrinoMu::AntiNeutrinoMuDefinition(); 118 << 119 G4MuonPlus::Definition(); << 120 G4MuonMinus::Definition(); << 121 } 118 } 122 void XrayTelPhysicsList::ConstructMesons() 119 void XrayTelPhysicsList::ConstructMesons() 123 { 120 { 124 // mesons 121 // mesons 125 G4MesonConstructor mConstructor; 122 G4MesonConstructor mConstructor; 126 mConstructor.ConstructParticle(); 123 mConstructor.ConstructParticle(); 127 } 124 } 128 << 129 void XrayTelPhysicsList::ConstructBaryons() 125 void XrayTelPhysicsList::ConstructBaryons() 130 { 126 { 131 // barions 127 // barions 132 G4BaryonConstructor bConstructor; 128 G4BaryonConstructor bConstructor; 133 bConstructor.ConstructParticle(); 129 bConstructor.ConstructParticle(); 134 } 130 } 135 << 136 void XrayTelPhysicsList::ConstructIons() 131 void XrayTelPhysicsList::ConstructIons() 137 { 132 { 138 // ions 133 // ions 139 G4IonConstructor iConstructor; 134 G4IonConstructor iConstructor; 140 iConstructor.ConstructParticle(); 135 iConstructor.ConstructParticle(); 141 } 136 } 142 << 143 void XrayTelPhysicsList::ConstructAllShortLive 137 void XrayTelPhysicsList::ConstructAllShortLiveds() 144 { 138 { 145 //Short-lived << 146 G4ShortLivedConstructor slConstructor; << 147 slConstructor.ConstructParticle(); << 148 } 139 } 149 << 150 << 151 void XrayTelPhysicsList::ConstructProcess() 140 void XrayTelPhysicsList::ConstructProcess() 152 { 141 { 153 // Transportation, electromagnetic and gener 142 // Transportation, electromagnetic and general processes 154 AddTransportation(); 143 AddTransportation(); 155 ConstructEM(); 144 ConstructEM(); 156 ConstructGeneral(); 145 ConstructGeneral(); 157 } 146 } 158 147 159 // Here are respective header files for chosen 148 // Here are respective header files for chosen processes 160 149 161 #include "G4ComptonScattering.hh" 150 #include "G4ComptonScattering.hh" 162 #include "G4GammaConversion.hh" 151 #include "G4GammaConversion.hh" 163 #include "G4PhotoElectricEffect.hh" 152 #include "G4PhotoElectricEffect.hh" 164 153 165 #include "G4eMultipleScattering.hh" 154 #include "G4eMultipleScattering.hh" 166 #include "G4hMultipleScattering.hh" 155 #include "G4hMultipleScattering.hh" 167 156 168 #include "G4eIonisation.hh" 157 #include "G4eIonisation.hh" 169 #include "G4eBremsstrahlung.hh" 158 #include "G4eBremsstrahlung.hh" 170 #include "G4eplusAnnihilation.hh" 159 #include "G4eplusAnnihilation.hh" 171 160 172 #include "G4MuIonisation.hh" 161 #include "G4MuIonisation.hh" 173 #include "G4MuBremsstrahlung.hh" 162 #include "G4MuBremsstrahlung.hh" 174 #include "G4MuPairProduction.hh" 163 #include "G4MuPairProduction.hh" 175 164 176 #include "G4hIonisation.hh" 165 #include "G4hIonisation.hh" 177 #include "G4hBremsstrahlung.hh" 166 #include "G4hBremsstrahlung.hh" 178 #include "G4hPairProduction.hh" 167 #include "G4hPairProduction.hh" 179 168 180 #include "G4ionIonisation.hh" 169 #include "G4ionIonisation.hh" 181 170 182 void XrayTelPhysicsList::ConstructEM() 171 void XrayTelPhysicsList::ConstructEM() 183 { 172 { 184 auto particleIterator=GetParticleIterator(); << 173 theParticleIterator->reset(); 185 particleIterator->reset(); << 186 174 187 while( (*particleIterator)() ) << 175 while( (*theParticleIterator)() ) 188 { 176 { 189 G4ParticleDefinition* particle = particl << 177 G4ParticleDefinition* particle = theParticleIterator->value(); 190 G4ProcessManager* pmanager = particle->G 178 G4ProcessManager* pmanager = particle->GetProcessManager(); 191 G4String particleName = particle->GetPar 179 G4String particleName = particle->GetParticleName(); 192 180 193 if (particleName == "gamma") 181 if (particleName == "gamma") 194 { 182 { 195 //gamma 183 //gamma 196 pmanager->AddDiscreteProcess(new G4PhotoEl 184 pmanager->AddDiscreteProcess(new G4PhotoElectricEffect()); 197 pmanager->AddDiscreteProcess(new G4Compton 185 pmanager->AddDiscreteProcess(new G4ComptonScattering()); 198 pmanager->AddDiscreteProcess(new G4GammaCo 186 pmanager->AddDiscreteProcess(new G4GammaConversion()); 199 } 187 } 200 else if (particleName == "e-") 188 else if (particleName == "e-") 201 { 189 { 202 //electron 190 //electron 203 pmanager->AddProcess(new G4eMultipleScatte 191 pmanager->AddProcess(new G4eMultipleScattering(),-1, 1,1); 204 pmanager->AddProcess(new G4eIonisation(), 192 pmanager->AddProcess(new G4eIonisation(), -1, 2,2); 205 pmanager->AddProcess(new G4eBremsstrahlung 193 pmanager->AddProcess(new G4eBremsstrahlung(), -1, 3,3); 206 194 207 } else if (particleName == "e+") { 195 } else if (particleName == "e+") { 208 196 209 //positron 197 //positron 210 pmanager->AddProcess(new G4eMultipleScatte 198 pmanager->AddProcess(new G4eMultipleScattering(),-1, 1,1); 211 pmanager->AddProcess(new G4eIonisation(), 199 pmanager->AddProcess(new G4eIonisation(), -1, 2,2); 212 pmanager->AddProcess(new G4eBremsstrahlung 200 pmanager->AddProcess(new G4eBremsstrahlung(), -1, 3,3); 213 pmanager->AddProcess(new G4eplusAnnihilati 201 pmanager->AddProcess(new G4eplusAnnihilation(), 0,-1,4); 214 202 215 } else if( particleName == "mu-" || 203 } else if( particleName == "mu-" || 216 particleName == "mu+" ) { 204 particleName == "mu+" ) { 217 205 218 //muon 206 //muon 219 pmanager->AddProcess(new G4hMultipleScatte 207 pmanager->AddProcess(new G4hMultipleScattering, -1, 1, 1); 220 pmanager->AddProcess(new G4MuIonisation, 208 pmanager->AddProcess(new G4MuIonisation, -1, 2, 2); 221 pmanager->AddProcess(new G4MuBremsstrahlun 209 pmanager->AddProcess(new G4MuBremsstrahlung, -1, 3, 3); 222 pmanager->AddProcess(new G4MuPairProductio 210 pmanager->AddProcess(new G4MuPairProduction, -1, 4, 4); 223 211 224 } else if( particleName == "pi-" || 212 } else if( particleName == "pi-" || 225 particleName == "pi+" ) { 213 particleName == "pi+" ) { 226 214 227 //pions 215 //pions 228 pmanager->AddProcess(new G4hMultipleScatte 216 pmanager->AddProcess(new G4hMultipleScattering, -1, 1, 1); 229 pmanager->AddProcess(new G4hIonisation, 217 pmanager->AddProcess(new G4hIonisation, -1, 2, 2); 230 pmanager->AddProcess(new G4hBremsstrahlung 218 pmanager->AddProcess(new G4hBremsstrahlung, -1, 3, 3); 231 pmanager->AddProcess(new G4hPairProduction 219 pmanager->AddProcess(new G4hPairProduction, -1, 4, 4); 232 220 233 } else if( particleName == "proton" ) { 221 } else if( particleName == "proton" ) { 234 222 235 //proton 223 //proton 236 pmanager->AddProcess(new G4hMultipleScatte 224 pmanager->AddProcess(new G4hMultipleScattering, -1, 1, 1); 237 pmanager->AddProcess(new G4hIonisation, 225 pmanager->AddProcess(new G4hIonisation, -1, 2, 2); 238 pmanager->AddProcess(new G4hBremsstrahlung 226 pmanager->AddProcess(new G4hBremsstrahlung, -1, 3, 3); 239 pmanager->AddProcess(new G4hPairProduction 227 pmanager->AddProcess(new G4hPairProduction, -1, 4, 4); 240 228 241 } else if( particleName == "alpha" || 229 } else if( particleName == "alpha" || 242 particleName == "He3" || 230 particleName == "He3" || 243 particleName == "GenericIon" ) { 231 particleName == "GenericIon" ) { 244 232 245 //Ions 233 //Ions 246 pmanager->AddProcess(new G4hMultipleScatte 234 pmanager->AddProcess(new G4hMultipleScattering, -1, 1, 1); 247 pmanager->AddProcess(new G4ionIonisation, 235 pmanager->AddProcess(new G4ionIonisation, -1, 2, 2); 248 236 249 } else if ((!particle->IsShortLived()) && 237 } else if ((!particle->IsShortLived()) && 250 (particle->GetPDGCharge() != 0.0) && 238 (particle->GetPDGCharge() != 0.0) && 251 (particle->GetParticleName() != "char 239 (particle->GetParticleName() != "chargedgeantino")) { 252 240 253 //all others charged particles except gean 241 //all others charged particles except geantino 254 pmanager->AddProcess(new G4hMultipleScatte 242 pmanager->AddProcess(new G4hMultipleScattering, -1, 1, 1); 255 pmanager->AddProcess(new G4hIonisation, 243 pmanager->AddProcess(new G4hIonisation, -1, 2, 2); 256 244 257 } 245 } 258 } 246 } 259 } 247 } 260 248 261 #include "G4Decay.hh" 249 #include "G4Decay.hh" 262 250 263 void XrayTelPhysicsList::ConstructGeneral() 251 void XrayTelPhysicsList::ConstructGeneral() 264 { 252 { 265 G4Decay* theDecayProcess = new G4Decay(); 253 G4Decay* theDecayProcess = new G4Decay(); 266 auto particleIterator=GetParticleIterator(); << 254 theParticleIterator->reset(); 267 particleIterator->reset(); << 255 while( (*theParticleIterator)() ){ 268 while( (*particleIterator)() ){ << 256 G4ParticleDefinition* particle = theParticleIterator->value(); 269 G4ParticleDefinition* particle = particleI << 270 G4ProcessManager* pmanager = particle->Get 257 G4ProcessManager* pmanager = particle->GetProcessManager(); 271 if (theDecayProcess->IsApplicable(*particl 258 if (theDecayProcess->IsApplicable(*particle)) { 272 pmanager ->AddProcess(theDecayProcess); 259 pmanager ->AddProcess(theDecayProcess); 273 pmanager ->SetProcessOrdering(theDecayPr 260 pmanager ->SetProcessOrdering(theDecayProcess, idxPostStep); 274 pmanager ->SetProcessOrdering(theDecayPr 261 pmanager ->SetProcessOrdering(theDecayProcess, idxAtRest); 275 } 262 } 276 } 263 } 277 } 264 } 278 265 279 void XrayTelPhysicsList::SetCuts() 266 void XrayTelPhysicsList::SetCuts() 280 { 267 { 281 // defaultCutValue you have typed in is used 268 // defaultCutValue you have typed in is used 282 269 283 if (verboseLevel >1){ 270 if (verboseLevel >1){ 284 G4cout << "XrayTelPhysicsList::SetCuts:" < 271 G4cout << "XrayTelPhysicsList::SetCuts:" << G4endl; 285 } 272 } 286 273 287 // set cut values for gamma at first and for 274 // set cut values for gamma at first and for e- second 288 SetCutValue(cutForGamma, "gamma"); 275 SetCutValue(cutForGamma, "gamma"); 289 SetCutValue(cutForElectron, "e-"); 276 SetCutValue(cutForElectron, "e-"); 290 SetCutValue(cutForElectron, "e+"); 277 SetCutValue(cutForElectron, "e+"); 291 278 292 // SetCutValueForOthers(defaultCutValue); 279 // SetCutValueForOthers(defaultCutValue); 293 280 294 if (verboseLevel >1) { 281 if (verboseLevel >1) { 295 DumpCutValuesTable(); 282 DumpCutValuesTable(); 296 } 283 } 297 } 284 } 298 285 299 void XrayTelPhysicsList::SetCutForGamma(G4doub 286 void XrayTelPhysicsList::SetCutForGamma(G4double cut) 300 { 287 { >> 288 ResetCuts(); 301 cutForGamma = cut; 289 cutForGamma = cut; 302 } 290 } 303 291 304 void XrayTelPhysicsList::SetCutForElectron(G4d 292 void XrayTelPhysicsList::SetCutForElectron(G4double cut) 305 { 293 { >> 294 ResetCuts(); 306 cutForElectron = cut; 295 cutForElectron = cut; 307 } 296 } 308 297 309 G4double XrayTelPhysicsList::GetCutForGamma() 298 G4double XrayTelPhysicsList::GetCutForGamma() const 310 { 299 { 311 return cutForGamma; 300 return cutForGamma; 312 } 301 } 313 302 314 G4double XrayTelPhysicsList::GetCutForElectron 303 G4double XrayTelPhysicsList::GetCutForElectron() const 315 { 304 { 316 return cutForElectron; 305 return cutForElectron; 317 } 306 } 318 307 319 308 320 309 321 310 322 311 323 312