Geant4  9.6.p02
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
ExN02PhysicsList.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 //
27 // $Id: ExN02PhysicsList.cc 69899 2013-05-17 10:05:33Z gcosmo $
28 //
29 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
30 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
31 
32 #include "globals.hh"
33 #include "ExN02PhysicsList.hh"
34 
35 #include "G4ProcessManager.hh"
36 #include "G4ParticleTypes.hh"
37 #include "G4SystemOfUnits.hh"
38 #include "G4IonConstructor.hh"
39 
40 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
41 
43 {
44  defaultCutValue = 1.0*cm;
45  SetVerboseLevel(1);
46 }
47 
48 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
49 
51 {}
52 
53 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
54 
56 {
57  // In this method, static member functions should be called
58  // for all particles which you want to use.
59  // This ensures that objects of these particle types will be
60  // created in the program.
61 
66  G4IonConstructor pIonConstructor;
67  pIonConstructor.ConstructParticle();
68 }
69 
70 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
71 
73 {
74  // pseudo-particles
77 
78  // gamma
80 }
81 
82 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
83 
85 {
86  // leptons
87  // e+/-
90  // mu+/-
93  // nu_e
96  // nu_mu
99 }
100 
101 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
102 
104 {
105  // mesons
106  // light mesons
118 }
119 
120 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
121 
123 {
124  // barions
127 
130 }
131 
132 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
133 
135 {
137  ConstructEM();
139  AddStepMax();
140 }
141 
142 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
143 
144 #include "G4PhysicsListHelper.hh"
145 
146 #include "G4ComptonScattering.hh"
147 #include "G4GammaConversion.hh"
148 #include "G4PhotoElectricEffect.hh"
149 
150 #include "G4eMultipleScattering.hh"
151 #include "G4eIonisation.hh"
152 #include "G4eBremsstrahlung.hh"
153 #include "G4eplusAnnihilation.hh"
154 
155 #include "G4MuMultipleScattering.hh"
156 #include "G4MuIonisation.hh"
157 #include "G4MuBremsstrahlung.hh"
158 #include "G4MuPairProduction.hh"
159 
160 #include "G4hMultipleScattering.hh"
161 #include "G4hIonisation.hh"
162 #include "G4hBremsstrahlung.hh"
163 #include "G4hPairProduction.hh"
164 
165 #include "G4ionIonisation.hh"
166 
167 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
168 
170 {
172 
174  while( (*theParticleIterator)() ){
176  G4String particleName = particle->GetParticleName();
177 
178  if (particleName == "gamma") {
179  // gamma
180  ph->RegisterProcess(new G4PhotoElectricEffect, particle);
181  ph->RegisterProcess(new G4ComptonScattering, particle);
182  ph->RegisterProcess(new G4GammaConversion, particle);
183 
184  } else if (particleName == "e-") {
185  //electron
186  ph->RegisterProcess(new G4eMultipleScattering, particle);
187  ph->RegisterProcess(new G4eIonisation, particle);
188  ph->RegisterProcess(new G4eBremsstrahlung, particle);
189 
190  } else if (particleName == "e+") {
191  //positron
192  ph->RegisterProcess(new G4eMultipleScattering, particle);
193  ph->RegisterProcess(new G4eIonisation, particle);
194  ph->RegisterProcess(new G4eBremsstrahlung, particle);
195  ph->RegisterProcess(new G4eplusAnnihilation, particle);
196 
197  } else if( particleName == "mu+" ||
198  particleName == "mu-" ) {
199  //muon
200  ph->RegisterProcess(new G4MuMultipleScattering, particle);
201  ph->RegisterProcess(new G4MuIonisation, particle);
202  ph->RegisterProcess(new G4MuBremsstrahlung, particle);
203  ph->RegisterProcess(new G4MuPairProduction, particle);
204 
205  } else if( particleName == "proton" ||
206  particleName == "pi-" ||
207  particleName == "pi+" ) {
208  //proton
209  ph->RegisterProcess(new G4hMultipleScattering, particle);
210  ph->RegisterProcess(new G4hIonisation, particle);
211  ph->RegisterProcess(new G4hBremsstrahlung, particle);
212  ph->RegisterProcess(new G4hPairProduction, particle);
213 
214  } else if( particleName == "alpha" ||
215  particleName == "He3" ) {
216  //alpha
217  ph->RegisterProcess(new G4hMultipleScattering, particle);
218  ph->RegisterProcess(new G4ionIonisation, particle);
219 
220  } else if( particleName == "GenericIon" ) {
221  //Ions
222  ph->RegisterProcess(new G4hMultipleScattering, particle);
223  ph->RegisterProcess(new G4ionIonisation, particle);
224 
225  } else if ((!particle->IsShortLived()) &&
226  (particle->GetPDGCharge() != 0.0) &&
227  (particle->GetParticleName() != "chargedgeantino")) {
228  //all others charged particles except geantino
229  ph->RegisterProcess(new G4hMultipleScattering, particle);
230  ph->RegisterProcess(new G4hIonisation, particle);
231  }
232  }
233 }
234 
235 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
236 
237 #include "G4Decay.hh"
238 
240 {
242 
243  // Add Decay Process
244  G4Decay* theDecayProcess = new G4Decay();
246  while( (*theParticleIterator)() ){
248  if (theDecayProcess->IsApplicable(*particle)) {
249  ph->RegisterProcess(theDecayProcess, particle);
250  }
251  }
252 }
253 
254 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
255 
256 #include "G4StepLimiter.hh"
257 #include "G4UserSpecialCuts.hh"
258 
260 {
261  // Step limitation seen as a process
262  G4StepLimiter* stepLimiter = new G4StepLimiter();
264 
266  while ((*theParticleIterator)()){
268  G4ProcessManager* pmanager = particle->GetProcessManager();
269 
270  if (particle->GetPDGCharge() != 0.0)
271  {
272  pmanager ->AddDiscreteProcess(stepLimiter);
274  }
275  }
276 }
277 
278 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
279 
281 {
282  //G4VUserPhysicsList::SetCutsWithDefault method sets
283  //the default cut value for all particle types
284  //
286 
288 }
289 
290 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
291