Geant4  10.03
PhysListEmPenelope.cc
Go to the documentation of this file.
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 //
28 //
29 //
30 // $Id: PhysListEmPenelope.cc 100275 2016-10-17 08:29:19Z gcosmo $
31 //
32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
33 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
34 
35 #include "PhysListEmPenelope.hh"
36 #include "G4BuilderType.hh"
37 #include "G4ParticleDefinition.hh"
38 #include "G4ProcessManager.hh"
39 
40 // gamma
41 
42 #include "G4PhotoElectricEffect.hh"
44 
45 #include "G4ComptonScattering.hh"
47 
48 #include "G4GammaConversion.hh"
50 
51 #include "G4RayleighScattering.hh"
53 
54 // e-
55 
56 #include "G4eIonisation.hh"
59 
60 #include "G4eBremsstrahlung.hh"
62 
63 // e+
64 
65 #include "G4eplusAnnihilation.hh"
67 
68 // mu
69 
70 #include "G4MuIonisation.hh"
71 #include "G4MuBremsstrahlung.hh"
72 #include "G4MuPairProduction.hh"
73 
74 // hadrons, ions
75 
76 #include "G4hIonisation.hh"
77 #include "G4ionIonisation.hh"
78 
79 #include "G4SystemOfUnits.hh"
80 
81 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
82 
84  : G4VPhysicsConstructor(name)
85 {
87  param->SetDefaults();
88  param->SetMinEnergy(10*eV);
89  param->SetMaxEnergy(10*TeV);
90  param->SetNumberOfBinsPerDecade(10);
91  param->SetBuildCSDARange(true);
93 }
94 
95 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
96 
98 { }
99 
100 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
101 
103 {
104  // Add standard EM Processes
105 
107  particleIterator->reset();
108  while( (*particleIterator)() ){
109  G4ParticleDefinition* particle = particleIterator->value();
110  G4ProcessManager* pmanager = particle->GetProcessManager();
111  G4String particleName = particle->GetParticleName();
112 
113  //Applicability range for Penelope models
114  //for higher energies, the Standard models are used
115  G4double highEnergyLimit = 1*GeV;
116 
117  if (particleName == "gamma") {
118  // gamma
119 
122  photModel = new G4PenelopePhotoElectricModel();
123  photModel->SetHighEnergyLimit(highEnergyLimit);
124  phot->AddEmModel(0, photModel);
125  pmanager->AddDiscreteProcess(phot);
126 
129  comptModel = new G4PenelopeComptonModel();
130  comptModel->SetHighEnergyLimit(highEnergyLimit);
131  compt->AddEmModel(0, comptModel);
132  pmanager->AddDiscreteProcess(compt);
133 
134  G4GammaConversion* conv = new G4GammaConversion();
136  convModel = new G4PenelopeGammaConversionModel();
137  convModel->SetHighEnergyLimit(highEnergyLimit);
138  conv->AddEmModel(0, convModel);
139  pmanager->AddDiscreteProcess(conv);
140 
143  raylModel = new G4PenelopeRayleighModel();
144  raylModel->SetHighEnergyLimit(highEnergyLimit);
145  rayl->AddEmModel(0, raylModel);
146  pmanager->AddDiscreteProcess(rayl);
147 
148  } else if (particleName == "e-") {
149  //electron
150 
151  G4eIonisation* eIoni = new G4eIonisation();
153  eIoniModel = new G4PenelopeIonisationModel();
154  eIoniModel->SetHighEnergyLimit(highEnergyLimit);
155  eIoni->AddEmModel(0, eIoniModel, new G4UniversalFluctuation() );
156  pmanager->AddProcess(eIoni, -1, 1, 1);
157 
158  G4eBremsstrahlung* eBrem = new G4eBremsstrahlung();
160  eBremModel = new G4PenelopeBremsstrahlungModel();
161  eBremModel->SetHighEnergyLimit(highEnergyLimit);
162  eBrem->AddEmModel(0, eBremModel);
163  pmanager->AddProcess(eBrem, -1, 2, 2);
164 
165  } else if (particleName == "e+") {
166  //positron
167  G4eIonisation* eIoni = new G4eIonisation();
169  eIoniModel = new G4PenelopeIonisationModel();
170  eIoniModel->SetHighEnergyLimit(highEnergyLimit);
171  eIoni->AddEmModel(0, eIoniModel, new G4UniversalFluctuation() );
172  pmanager->AddProcess(eIoni, -1, 1, 1);
173 
174  G4eBremsstrahlung* eBrem = new G4eBremsstrahlung();
176  eBremModel = new G4PenelopeBremsstrahlungModel();
177  eBremModel->SetHighEnergyLimit(highEnergyLimit);
178  eBrem->AddEmModel(0, eBremModel);
179  pmanager->AddProcess(eBrem, -1, 2, 2);
180 
183  eAnniModel = new G4PenelopeAnnihilationModel();
184  eAnniModel->SetHighEnergyLimit(highEnergyLimit);
185  eAnni->AddEmModel(0, eAnniModel);
186  pmanager->AddProcess(eAnni, 0,-1, 3);
187 
188  } else if( particleName == "mu+" ||
189  particleName == "mu-" ) {
190  //muon
191  pmanager->AddProcess(new G4MuIonisation, -1, 1, 1);
192  pmanager->AddProcess(new G4MuBremsstrahlung, -1, 2, 2);
193  pmanager->AddProcess(new G4MuPairProduction, -1, 3, 3);
194 
195  } else if( particleName == "alpha" || particleName == "GenericIon" ) {
196  pmanager->AddProcess(new G4ionIonisation, -1, 1, 1);
197 
198  } else if ((!particle->IsShortLived()) &&
199  (particle->GetPDGCharge() != 0.0) &&
200  (particle->GetParticleName() != "chargedgeantino")) {
201  //all others charged particles except geantino
202  pmanager->AddProcess(new G4hIonisation, -1, 1, 1);
203  }
204  }
205 }
206 
207 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
208 
G4int AddDiscreteProcess(G4VProcess *aProcess, G4int ord=ordDefault)
PhysListEmPenelope(const G4String &name="penelope")
const char * name(G4int ptype)
void SetMaxEnergy(G4double val)
const G4String & GetParticleName() const
void SetHighEnergyLimit(G4double)
Definition: G4VEmModel.hh:724
static constexpr double TeV
Definition: G4SIunits.hh:218
void AddEmModel(G4int, G4VEmModel *, G4VEmFluctuationModel *fluc=0, const G4Region *region=nullptr)
G4ParticleTable::G4PTblDicIterator * GetParticleIterator() const
G4int AddProcess(G4VProcess *aProcess, G4int ordAtRestDoIt=ordInActive, G4int ordAlongSteptDoIt=ordInActive, G4int ordPostStepDoIt=ordInActive)
void SetNumberOfBinsPerDecade(G4int val)
static constexpr double eV
Definition: G4SIunits.hh:215
void AddEmModel(G4int, G4VEmModel *, const G4Region *region=nullptr)
void SetBuildCSDARange(G4bool val)
virtual void ConstructProcess()
G4ProcessManager * GetProcessManager() const
void SetMinEnergy(G4double val)
static G4EmParameters * Instance()
static constexpr double GeV
Definition: G4SIunits.hh:217
std::vector< G4InuclElementaryParticle >::iterator particleIterator
Definition: G4BigBanger.cc:65
double G4double
Definition: G4Types.hh:76
G4double GetPDGCharge() const