Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
examples/extended/electromagnetic/TestEm18/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 /// \file electromagnetic/TestEm18/src/PhysListEmStandard.cc
27 /// \brief Implementation of the PhysListEmStandard class
28 //
29 // $Id: PhysListEmStandard.cc 68585 2013-04-01 23:35:07Z adotti $
30 //
31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
33 
34 #include "PhysListEmStandard.hh"
35 #include "G4ParticleDefinition.hh"
36 #include "G4ProcessManager.hh"
37 #include "G4PhysicsListHelper.hh"
38 
39 #include "G4ComptonScattering.hh"
40 #include "G4GammaConversion.hh"
41 #include "G4PhotoElectricEffect.hh"
42 #include "G4RayleighScattering.hh"
43 #include "G4KleinNishinaModel.hh"
44 
45 #include "G4eIonisation.hh"
46 #include "G4eBremsstrahlung.hh"
47 #include "G4eplusAnnihilation.hh"
48 
49 #include "G4MuIonisation.hh"
50 #include "G4MuBremsstrahlung.hh"
51 #include "G4MuPairProduction.hh"
52 
53 #include "G4hIonisation.hh"
54 #include "G4hBremsstrahlung.hh"
55 #include "G4hPairProduction.hh"
56 
57 #include "G4ionIonisation.hh"
59 #include "G4NuclearStopping.hh"
60 
61 #include "G4LossTableManager.hh"
62 #include "G4UAtomicDeexcitation.hh"
63 
64 #include "G4SystemOfUnits.hh"
65 
66 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
67 
69  : G4VPhysicsConstructor(name)
70 {}
71 
72 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
73 
75 {}
76 
77 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
78 
80 {
82 
83  // Add standard EM Processes
84  //
85  aParticleIterator->reset();
86  while( (*aParticleIterator)() ){
87  G4ParticleDefinition* particle = aParticleIterator->value();
88  G4String particleName = particle->GetParticleName();
89 
90  if (particleName == "gamma") {
91 
92  ////ph->RegisterProcess(new G4RayleighScattering, particle);
93  ph->RegisterProcess(new G4PhotoElectricEffect, particle);
96  ph->RegisterProcess(cs, particle);
97  ph->RegisterProcess(new G4GammaConversion, particle);
98 
99  } else if (particleName == "e-") {
100 
101  G4eIonisation* eIoni = new G4eIonisation();
102  eIoni->SetStepFunction(0.1, 100*um);
103  ph->RegisterProcess(eIoni, particle);
104  ph->RegisterProcess(new G4eBremsstrahlung(), particle);
105 
106  } else if (particleName == "e+") {
107 
108  G4eIonisation* eIoni = new G4eIonisation();
109  eIoni->SetStepFunction(0.1, 100*um);
110  ph->RegisterProcess(eIoni, particle);
111  ph->RegisterProcess(new G4eBremsstrahlung(), particle);
112  ph->RegisterProcess(new G4eplusAnnihilation(), particle);
113 
114  } else if (particleName == "mu+" ||
115  particleName == "mu-" ) {
116 
117  G4MuIonisation* muIoni = new G4MuIonisation();
118  muIoni->SetStepFunction(0.1, 50*um);
119  ph->RegisterProcess(muIoni, particle);
120  ph->RegisterProcess(new G4MuBremsstrahlung(), particle);
121  ph->RegisterProcess(new G4MuPairProduction(), particle);
122 
123  } else if( particleName == "proton" ||
124  particleName == "pi-" ||
125  particleName == "pi+" ) {
126 
127  G4hIonisation* hIoni = new G4hIonisation();
128  hIoni->SetStepFunction(0.1, 20*um);
129  ph->RegisterProcess(hIoni, particle);
130  ph->RegisterProcess(new G4hBremsstrahlung(), particle);
131  ph->RegisterProcess(new G4hPairProduction(), particle);
132 
133  } else if( particleName == "alpha" ||
134  particleName == "He3" ) {
135 
136  G4ionIonisation* ionIoni = new G4ionIonisation();
137  ionIoni->SetStepFunction(0.1, 1*um);
138  ph->RegisterProcess(ionIoni, particle);
139  ph->RegisterProcess(new G4NuclearStopping(), particle);
140 
141  } else if( particleName == "GenericIon" ) {
142 
143  G4ionIonisation* ionIoni = new G4ionIonisation();
144  ionIoni->SetEmModel(new G4IonParametrisedLossModel());
145  ionIoni->SetStepFunction(0.1, 1*um);
146  ph->RegisterProcess(ionIoni, particle);
147  ph->RegisterProcess(new G4NuclearStopping(), particle);
148 
149  } else if ((!particle->IsShortLived()) &&
150  (particle->GetPDGCharge() != 0.0) &&
151  (particle->GetParticleName() != "chargedgeantino")) {
152 
153  //all others charged particles except geantino
154  ph->RegisterProcess(new G4hIonisation(), particle);
155  }
156  }
157 
158  // Deexcitation
159  //
161  de->SetFluo(true);
162  de->SetAuger(false);
163  de->SetPIXE(false);
165 }
166 
167 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
168 
static G4LossTableManager * Instance()
void SetStepFunction(G4double v1, G4double v2)
const XML_Char * name
const G4String & GetParticleName() const
void SetEmModel(G4VEmModel *, G4int index=1)
#define aParticleIterator
G4bool RegisterProcess(G4VProcess *process, G4ParticleDefinition *particle)
static G4PhysicsListHelper * GetPhysicsListHelper()
void SetEmModel(G4VEmModel *, G4int index=1)
G4double GetPDGCharge() const
void SetAtomDeexcitation(G4VAtomDeexcitation *)