Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
examples/extended/electromagnetic/TestEm12/src/PhysListEmStandard.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: PhysListEmStandard.cc 68530 2013-04-01 21:30:05Z adotti $
27 //
28 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
29 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
30 
31 #include "PhysListEmStandard.hh"
32 #include "G4ParticleDefinition.hh"
33 #include "G4ProcessManager.hh"
34 #include "G4PhysicsListHelper.hh"
35 
36 #include "G4ComptonScattering.hh"
37 #include "G4GammaConversion.hh"
38 #include "G4PhotoElectricEffect.hh"
39 #include "G4RayleighScattering.hh"
40 #include "G4KleinNishinaModel.hh"
41 
42 #include "G4eMultipleScattering.hh"
43 #include "G4eIonisation.hh"
44 #include "G4eBremsstrahlung.hh"
45 #include "G4eplusAnnihilation.hh"
46 
48 #include "G4MuIonisation.hh"
49 #include "G4MuBremsstrahlung.hh"
50 #include "G4MuPairProduction.hh"
51 
52 #include "G4hMultipleScattering.hh"
53 #include "G4hIonisation.hh"
54 #include "G4hBremsstrahlung.hh"
55 #include "G4hPairProduction.hh"
56 
57 #include "G4ionIonisation.hh"
59 #include "G4NuclearStopping.hh"
60 
61 #include "G4EmProcessOptions.hh"
62 #include "G4MscStepLimitType.hh"
63 
64 #include "G4LossTableManager.hh"
65 #include "G4UAtomicDeexcitation.hh"
66 
67 #include "G4SystemOfUnits.hh"
68 
69 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
70 
72  : G4VPhysicsConstructor(name)
73 {}
74 
75 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
76 
78 {}
79 
80 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
81 
83 {
85 
86  // Add standard EM Processes
87  //
88  aParticleIterator->reset();
89  while( (*aParticleIterator)() ){
90  G4ParticleDefinition* particle = aParticleIterator->value();
91  G4String particleName = particle->GetParticleName();
92 
93  if (particleName == "gamma") {
94 
95  ////ph->RegisterProcess(new G4RayleighScattering, particle);
96  ph->RegisterProcess(new G4PhotoElectricEffect, particle);
99  ph->RegisterProcess(cs, particle);
100  ph->RegisterProcess(new G4GammaConversion, particle);
101 
102  } else if (particleName == "e-") {
103 
104  ph->RegisterProcess(new G4eMultipleScattering(), particle);
105  //
106  G4eIonisation* eIoni = new G4eIonisation();
107  eIoni->SetStepFunction(0.1, 100*um);
108  ph->RegisterProcess(eIoni, particle);
109  //
110  ph->RegisterProcess(new G4eBremsstrahlung(), particle);
111 
112  } else if (particleName == "e+") {
113 
114  ph->RegisterProcess(new G4eMultipleScattering(), particle);
115  //
116  G4eIonisation* eIoni = new G4eIonisation();
117  eIoni->SetStepFunction(0.1, 100*um);
118  ph->RegisterProcess(eIoni, particle);
119  //
120  ph->RegisterProcess(new G4eBremsstrahlung(), particle);
121  //
122  ph->RegisterProcess(new G4eplusAnnihilation(), particle);
123 
124  } else if (particleName == "mu+" ||
125  particleName == "mu-" ) {
126 
127  ph->RegisterProcess(new G4MuMultipleScattering(), particle);
128  G4MuIonisation* muIoni = new G4MuIonisation();
129  muIoni->SetStepFunction(0.1, 50*um);
130  ph->RegisterProcess(muIoni, particle);
131  ph->RegisterProcess(new G4MuBremsstrahlung(), particle);
132  ph->RegisterProcess(new G4MuPairProduction(), particle);
133 
134  } else if( particleName == "proton" ||
135  particleName == "pi-" ||
136  particleName == "pi+" ) {
137 
138  ph->RegisterProcess(new G4hMultipleScattering(), particle);
139  G4hIonisation* hIoni = new G4hIonisation();
140  hIoni->SetStepFunction(0.1, 20*um);
141  ph->RegisterProcess(hIoni, particle);
142  ph->RegisterProcess(new G4hBremsstrahlung(), particle);
143  ph->RegisterProcess(new G4hPairProduction(), particle);
144 
145  } else if( particleName == "alpha" ||
146  particleName == "He3" ) {
147 
148  ph->RegisterProcess(new G4hMultipleScattering(), particle);
149  G4ionIonisation* ionIoni = new G4ionIonisation();
150  ionIoni->SetStepFunction(0.1, 1*um);
151  ph->RegisterProcess(ionIoni, particle);
152  ph->RegisterProcess(new G4NuclearStopping(), particle);
153 
154  } else if( particleName == "GenericIon" ) {
155 
156  ph->RegisterProcess(new G4hMultipleScattering(), particle);
157  G4ionIonisation* ionIoni = new G4ionIonisation();
158  ionIoni->SetEmModel(new G4IonParametrisedLossModel());
159  ionIoni->SetStepFunction(0.1, 1*um);
160  ph->RegisterProcess(ionIoni, particle);
161  ph->RegisterProcess(new G4NuclearStopping(), particle);
162 
163  } else if ((!particle->IsShortLived()) &&
164  (particle->GetPDGCharge() != 0.0) &&
165  (particle->GetParticleName() != "chargedgeantino")) {
166 
167  //all others charged particles except geantino
168  ph->RegisterProcess(new G4hMultipleScattering(), particle);
169  ph->RegisterProcess(new G4hIonisation(), particle);
170  }
171  }
172 
173  // Em options
174  //
175  // Main options and setting parameters are shown here.
176  // Several of them have default values.
177  //
178  G4EmProcessOptions emOptions;
179 
180  //physics tables
181  //
182  emOptions.SetMinEnergy(10*eV); //default 100 eV
183  emOptions.SetMaxEnergy(10*TeV); //default 100 TeV
184  emOptions.SetDEDXBinning(12*10); //default=12*7
185  emOptions.SetLambdaBinning(12*10); //default=12*7
186 
187  //multiple coulomb scattering
188  //
189  emOptions.SetMscStepLimitation(fUseDistanceToBoundary); //default=fUseSafety
190 
191  // Deexcitation
192  //
194  de->SetFluo(true);
195  de->SetAuger(false);
196  de->SetPIXE(false);
198 }
199 
200 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
201 
static G4LossTableManager * Instance()
void SetMinEnergy(G4double val)
void SetStepFunction(G4double v1, G4double v2)
const XML_Char * name
const G4String & GetParticleName() const
void SetDEDXBinning(G4int val)
void SetEmModel(G4VEmModel *, G4int index=1)
void SetLambdaBinning(G4int val)
#define aParticleIterator
G4bool RegisterProcess(G4VProcess *process, G4ParticleDefinition *particle)
void SetMaxEnergy(G4double val)
static G4PhysicsListHelper * GetPhysicsListHelper()
void SetEmModel(G4VEmModel *, G4int index=1)
void SetMscStepLimitation(G4MscStepLimitType val)
G4double GetPDGCharge() const
void SetAtomDeexcitation(G4VAtomDeexcitation *)