Geant4  10.01.p01
G4EmStandardPhysics.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 //
26 // $Id: G4EmStandardPhysics.cc 84662 2014-10-17 14:32:32Z gcosmo $
27 //
28 //---------------------------------------------------------------------------
29 //
30 // ClassName: G4EmStandardPhysics
31 //
32 // Author: V.Ivanchenko 09.11.2005
33 //
34 // Modified:
35 // 05.12.2005 V.Ivanchenko add controlled verbosity
36 // 13.11.2006 V.Ivanchenko use G4hMultipleScattering
37 // 23.11.2006 V.Ivanchenko remove mscStepLimit option and improve cout
38 // 13.02.2007 V.Ivanchenko use G4hMultipleScattering for muons
39 // 13.02.2007 V.Ivanchenko set skin=0.0
40 // 21.04.2008 V.Ivanchenko add long-lived D and B mesons
41 //
42 //----------------------------------------------------------------------------
43 //
44 
45 #include "G4EmStandardPhysics.hh"
46 #include "G4SystemOfUnits.hh"
47 #include "G4ParticleDefinition.hh"
48 #include "G4EmParameters.hh"
49 #include "G4LossTableManager.hh"
50 
51 #include "G4ComptonScattering.hh"
52 #include "G4GammaConversion.hh"
53 #include "G4PhotoElectricEffect.hh"
54 
55 #include "G4eMultipleScattering.hh"
57 #include "G4hMultipleScattering.hh"
58 #include "G4CoulombScattering.hh"
60 #include "G4WentzelVIModel.hh"
61 #include "G4UrbanMscModel.hh"
62 
67 
68 #include "G4eIonisation.hh"
69 #include "G4eBremsstrahlung.hh"
70 #include "G4eplusAnnihilation.hh"
71 #include "G4UAtomicDeexcitation.hh"
72 
73 #include "G4MuIonisation.hh"
74 #include "G4MuBremsstrahlung.hh"
75 #include "G4MuPairProduction.hh"
76 #include "G4hBremsstrahlung.hh"
77 #include "G4hPairProduction.hh"
78 
79 #include "G4hIonisation.hh"
80 #include "G4ionIonisation.hh"
81 #include "G4alphaIonisation.hh"
82 
83 #include "G4Gamma.hh"
84 #include "G4Electron.hh"
85 #include "G4Positron.hh"
86 #include "G4MuonPlus.hh"
87 #include "G4MuonMinus.hh"
88 #include "G4PionPlus.hh"
89 #include "G4PionMinus.hh"
90 #include "G4KaonPlus.hh"
91 #include "G4KaonMinus.hh"
92 #include "G4Proton.hh"
93 #include "G4AntiProton.hh"
94 #include "G4Deuteron.hh"
95 #include "G4Triton.hh"
96 #include "G4He3.hh"
97 #include "G4Alpha.hh"
98 #include "G4GenericIon.hh"
99 
100 #include "G4PhysicsListHelper.hh"
101 #include "G4BuilderType.hh"
102 
103 // factory
105 //
107 
108 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
109 
111  : G4VPhysicsConstructor("G4EmStandard"), verbose(ver)
112 {
115 }
116 
117 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
118 
120  : G4VPhysicsConstructor("G4EmStandard"), verbose(ver)
121 {
124 }
125 
126 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
127 
129 {}
130 
131 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
132 
134 {
135  // gamma
136  G4Gamma::Gamma();
137 
138  // leptons
143 
144  // mesons
149 
150  // barions
153 
154  // ions
157  G4He3::He3();
158  G4Alpha::Alpha();
160 }
161 
162 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
163 
165 {
166  if(verbose > 1) {
167  G4cout << "### " << GetPhysicsName() << " Construct Processes " << G4endl;
168  }
170 
171  // muon & hadron bremsstrahlung and pair production
180 
181  // muon & hadron multiple scattering
183  mumsc->AddEmModel(0, new G4WentzelVIModel());
185 
187  pimsc->AddEmModel(0, new G4WentzelVIModel());
189 
191  kmsc->AddEmModel(0, new G4WentzelVIModel());
193 
195  pmsc->AddEmModel(0, new G4WentzelVIModel());
197 
198  G4hMultipleScattering* hmsc = new G4hMultipleScattering("ionmsc");
199 
200  // high energy limit for e+- scattering models
201  G4double highEnergyLimit = 100*MeV;
202 
203  // Add standard EM Processes
204  aParticleIterator->reset();
205  while( (*aParticleIterator)() ){
206  G4ParticleDefinition* particle = aParticleIterator->value();
207  G4String particleName = particle->GetParticleName();
208 
209  if (particleName == "gamma") {
210 
211  ph->RegisterProcess(new G4PhotoElectricEffect(), particle);
212  ph->RegisterProcess(new G4ComptonScattering(), particle);
213  ph->RegisterProcess(new G4GammaConversion(), particle);
214 
215  } else if (particleName == "e-") {
216 
218  G4UrbanMscModel* msc1 = new G4UrbanMscModel();
219  G4WentzelVIModel* msc2 = new G4WentzelVIModel();
220  msc1->SetHighEnergyLimit(highEnergyLimit);
221  msc2->SetLowEnergyLimit(highEnergyLimit);
222  msc->AddEmModel(0, msc1);
223  msc->AddEmModel(0, msc2);
224 
227  ss->SetEmModel(ssm, 1);
228  ss->SetMinKinEnergy(highEnergyLimit);
229  ssm->SetLowEnergyLimit(highEnergyLimit);
230  ssm->SetActivationLowEnergyLimit(highEnergyLimit);
231 
232  ph->RegisterProcess(msc, particle);
233  ph->RegisterProcess(new G4eIonisation(), particle);
234  ph->RegisterProcess(new G4eBremsstrahlung(), particle);
235  ph->RegisterProcess(ss, particle);
236 
237  } else if (particleName == "e+") {
238 
240  G4UrbanMscModel* msc1 = new G4UrbanMscModel();
241  G4WentzelVIModel* msc2 = new G4WentzelVIModel();
242  msc1->SetHighEnergyLimit(highEnergyLimit);
243  msc2->SetLowEnergyLimit(highEnergyLimit);
244  msc->AddEmModel(0, msc1);
245  msc->AddEmModel(0, msc2);
246 
249  ss->SetEmModel(ssm, 1);
250  ss->SetMinKinEnergy(highEnergyLimit);
251  ssm->SetLowEnergyLimit(highEnergyLimit);
252  ssm->SetActivationLowEnergyLimit(highEnergyLimit);
253 
254  ph->RegisterProcess(msc, particle);
255  ph->RegisterProcess(new G4eIonisation(), particle);
256  ph->RegisterProcess(new G4eBremsstrahlung(), particle);
257  ph->RegisterProcess(new G4eplusAnnihilation(), particle);
258  ph->RegisterProcess(ss, particle);
259 
260  } else if (particleName == "mu+" ||
261  particleName == "mu-" ) {
262 
263  ph->RegisterProcess(mumsc, particle);
264  ph->RegisterProcess(new G4MuIonisation(), particle);
265  ph->RegisterProcess(mub, particle);
266  ph->RegisterProcess(mup, particle);
267  ph->RegisterProcess(muss, particle);
268 
269  } else if (particleName == "alpha" ||
270  particleName == "He3") {
271 
272  //ph->RegisterProcess(hmsc, particle);
273  ph->RegisterProcess(new G4hMultipleScattering(), particle);
274  ph->RegisterProcess(new G4ionIonisation(), particle);
275 
276  } else if (particleName == "GenericIon") {
277 
278  ph->RegisterProcess(hmsc, particle);
279  ph->RegisterProcess(new G4ionIonisation(), particle);
280 
281  } else if (particleName == "pi+" ||
282  particleName == "pi-" ) {
283 
284  //G4hMultipleScattering* pimsc = new G4hMultipleScattering();
285  ph->RegisterProcess(pimsc, particle);
286  ph->RegisterProcess(new G4hIonisation(), particle);
287  ph->RegisterProcess(pib, particle);
288  ph->RegisterProcess(pip, particle);
289  ph->RegisterProcess(piss, particle);
290 
291  } else if (particleName == "kaon+" ||
292  particleName == "kaon-" ) {
293 
294  //G4hMultipleScattering* kmsc = new G4hMultipleScattering();
295  ph->RegisterProcess(kmsc, particle);
296  ph->RegisterProcess(new G4hIonisation(), particle);
297  ph->RegisterProcess(kb, particle);
298  ph->RegisterProcess(kp, particle);
299  ph->RegisterProcess(kss, particle);
300 
301  } else if (particleName == "proton" ||
302  particleName == "anti_proton") {
303 
304  //G4hMultipleScattering* pmsc = new G4hMultipleScattering();
305  ph->RegisterProcess(pmsc, particle);
306  ph->RegisterProcess(new G4hIonisation(), particle);
307  ph->RegisterProcess(pb, particle);
308  ph->RegisterProcess(pp, particle);
309  ph->RegisterProcess(pss, particle);
310 
311  } else if (particleName == "B+" ||
312  particleName == "B-" ||
313  particleName == "D+" ||
314  particleName == "D-" ||
315  particleName == "Ds+" ||
316  particleName == "Ds-" ||
317  particleName == "anti_He3" ||
318  particleName == "anti_alpha" ||
319  particleName == "anti_deuteron" ||
320  particleName == "anti_lambda_c+" ||
321  particleName == "anti_omega-" ||
322  particleName == "anti_sigma_c+" ||
323  particleName == "anti_sigma_c++" ||
324  particleName == "anti_sigma+" ||
325  particleName == "anti_sigma-" ||
326  particleName == "anti_triton" ||
327  particleName == "anti_xi_c+" ||
328  particleName == "anti_xi-" ||
329  particleName == "deuteron" ||
330  particleName == "lambda_c+" ||
331  particleName == "omega-" ||
332  particleName == "sigma_c+" ||
333  particleName == "sigma_c++" ||
334  particleName == "sigma+" ||
335  particleName == "sigma-" ||
336  particleName == "tau+" ||
337  particleName == "tau-" ||
338  particleName == "triton" ||
339  particleName == "xi_c+" ||
340  particleName == "xi-" ) {
341 
342  ph->RegisterProcess(hmsc, particle);
343  ph->RegisterProcess(new G4hIonisation(), particle);
344  }
345  }
346 
347  // Deexcitation
348  //
351 }
352 
353 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
static G4KaonPlus * KaonPlusDefinition()
Definition: G4KaonPlus.cc:108
static G4GenericIon * GenericIonDefinition()
Definition: G4GenericIon.cc:88
static G4MuonPlus * MuonPlus()
Definition: G4MuonPlus.cc:99
static const double MeV
Definition: G4SIunits.hh:193
void SetVerbose(G4int val)
static G4LossTableManager * Instance()
virtual void ConstructParticle()
G4_DECLARE_PHYSCONSTR_FACTORY(G4EmStandardPhysics)
G4EmStandardPhysics(G4int ver=0)
static G4KaonMinus * KaonMinusDefinition()
Definition: G4KaonMinus.cc:108
int G4int
Definition: G4Types.hh:78
const G4String & GetParticleName() const
void SetHighEnergyLimit(G4double)
Definition: G4VEmModel.hh:706
void SetEmModel(G4VEmModel *, G4int index=1)
G4GLOB_DLL std::ostream G4cout
static G4AntiProton * AntiProton()
Definition: G4AntiProton.cc:93
static G4PionMinus * PionMinusDefinition()
Definition: G4PionMinus.cc:93
#define aParticleIterator
G4bool RegisterProcess(G4VProcess *process, G4ParticleDefinition *particle)
static G4Triton * Triton()
Definition: G4Triton.cc:95
static G4PionPlus * PionPlusDefinition()
Definition: G4PionPlus.cc:93
static G4Proton * Proton()
Definition: G4Proton.cc:93
virtual void ConstructProcess()
const G4String & GetPhysicsName() const
static G4Gamma * Gamma()
Definition: G4Gamma.cc:86
static G4Deuteron * Deuteron()
Definition: G4Deuteron.cc:94
void SetActivationLowEnergyLimit(G4double)
Definition: G4VEmModel.hh:727
static G4Positron * Positron()
Definition: G4Positron.cc:94
void AddEmModel(G4int order, G4VEmModel *, const G4Region *region=0)
static G4PhysicsListHelper * GetPhysicsListHelper()
static G4EmParameters * Instance()
static G4MuonMinus * MuonMinus()
Definition: G4MuonMinus.cc:100
static G4Electron * Electron()
Definition: G4Electron.cc:94
#define G4endl
Definition: G4ios.hh:61
static G4Alpha * Alpha()
Definition: G4Alpha.cc:89
void SetMinKinEnergy(G4double e)
double G4double
Definition: G4Types.hh:76
void SetLowEnergyLimit(G4double)
Definition: G4VEmModel.hh:713
static G4He3 * He3()
Definition: G4He3.cc:94
void SetAtomDeexcitation(G4VAtomDeexcitation *)