Geant4  10.02
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 83010 2014-07-24 14:53:07Z gcosmo $
27 //
28 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
29 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
30 
31 #include "PhysListEmStandard.hh"
32 #include "G4ParticleDefinition.hh"
34 #include "G4PhysicsListHelper.hh"
35 
36 #include "G4ComptonScattering.hh"
37 #include "G4GammaConversion.hh"
38 #include "G4PhotoElectricEffect.hh"
39 
40 #include "G4eMultipleScattering.hh"
41 #include "G4hMultipleScattering.hh"
42 
43 #include "G4eIonisation.hh"
44 #include "G4eBremsstrahlung.hh"
45 #include "G4eplusAnnihilation.hh"
46 
47 #include "G4MuIonisation.hh"
48 #include "G4MuBremsstrahlung.hh"
49 #include "G4MuPairProduction.hh"
50 
51 #include "G4hIonisation.hh"
52 #include "G4hBremsstrahlung.hh"
53 #include "G4hPairProduction.hh"
54 
55 #include "G4ionIonisation.hh"
56 
57 #include "G4EmProcessOptions.hh"
58 #include "G4MscStepLimitType.hh"
59 
60 #include "G4SystemOfUnits.hh"
61 
62 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
63 
65  : G4VPhysicsConstructor(name)
66 {}
67 
68 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
69 
71 {}
72 
73 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
74 
76 {
78 
79  // Add standard EM Processes
80  //
81  aParticleIterator->reset();
82  while( (*aParticleIterator)() ){
83  G4ParticleDefinition* particle = aParticleIterator->value();
84  G4String particleName = particle->GetParticleName();
85 
86  if (particleName == "gamma") {
87  // gamma
88  ph->RegisterProcess(new G4PhotoElectricEffect, particle);
89  ph->RegisterProcess(new G4ComptonScattering, particle);
90  ph->RegisterProcess(new G4GammaConversion, particle);
91 
92  } else if (particleName == "e-") {
93  //electron
94  ph->RegisterProcess(new G4eMultipleScattering, particle);
95  ph->RegisterProcess(new G4eIonisation, particle);
96  ph->RegisterProcess(new G4eBremsstrahlung(), particle);
97 
98  } else if (particleName == "e+") {
99  //positron
100  ph->RegisterProcess(new G4eMultipleScattering, particle);
101  ph->RegisterProcess(new G4eIonisation, particle);
102  ph->RegisterProcess(new G4eBremsstrahlung(), particle);
103  ph->RegisterProcess(new G4eplusAnnihilation, particle);
104 
105  } else if( particleName == "mu-" ||
106  particleName == "mu+" ) {
107  //muon
108  ph->RegisterProcess(new G4hMultipleScattering, particle);
109  ph->RegisterProcess(new G4MuIonisation, particle);
110  ph->RegisterProcess(new G4MuBremsstrahlung, particle);
111  ph->RegisterProcess(new G4MuPairProduction, particle);
112 
113  } else if( particleName == "proton" ||
114  particleName == "pi-" ||
115  particleName == "pi+" ) {
116  //proton
117  ph->RegisterProcess(new G4hMultipleScattering, particle);
118  ph->RegisterProcess(new G4hIonisation, particle);
119  ph->RegisterProcess(new G4hBremsstrahlung, particle);
120  ph->RegisterProcess(new G4hPairProduction, particle);
121 
122  } else if( particleName == "alpha" ||
123  particleName == "He3" ||
124  particleName == "GenericIon" ) {
125  //Ions
126  ph->RegisterProcess(new G4hMultipleScattering, particle);
127  ph->RegisterProcess(new G4ionIonisation, particle);
128 
129  } else if ((!particle->IsShortLived()) &&
130  (particle->GetPDGCharge() != 0.0) &&
131  (particle->GetParticleName() != "chargedgeantino")) {
132  //all others charged particles except geantino
133  ph->RegisterProcess(new G4hMultipleScattering, particle);
134  ph->RegisterProcess(new G4hIonisation, particle);
135  }
136  }
137 
138  // Em options
139  //
140  // Main options and setting parameters are shown here.
141  // Several of them have default values.
142  //
143  G4EmProcessOptions emOptions;
144 
145  //physics tables
146  //
147  emOptions.SetMinEnergy(100*eV); //default
148  emOptions.SetMaxEnergy(100*TeV); //default
149  emOptions.SetDEDXBinning(12*10); //default=12*7
150  emOptions.SetLambdaBinning(12*10); //default=12*7
151 
152  //multiple coulomb scattering
153  //
154  emOptions.SetMscStepLimitation(fUseSafety); //default=fUseSafety
155 
156  //energy loss
157  //
158  emOptions.SetStepFunction(0.2, 100*um); //default=(0.2, 1*mm)
159 
160  //verbose
161  //
162  emOptions.SetVerbose(0);
163 }
164 
165 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
166 
G4String name
Definition: TRTMaterials.hh:40
void SetMinEnergy(G4double val)
PhysListEmStandard(const G4String &name="standard")
#include "G4ProcessManager.hh"
void SetStepFunction(G4double v1, G4double v2)
const G4String & GetParticleName() const
void SetDEDXBinning(G4int val)
void SetLambdaBinning(G4int val)
#define aParticleIterator
G4bool RegisterProcess(G4VProcess *process, G4ParticleDefinition *particle)
void SetVerbose(G4int val)
void SetMaxEnergy(G4double val)
static const double eV
Definition: G4SIunits.hh:212
static G4PhysicsListHelper * GetPhysicsListHelper()
static const double um
Definition: G4SIunits.hh:112
static const double TeV
Definition: G4SIunits.hh:215
void SetMscStepLimitation(G4MscStepLimitType val)
G4double GetPDGCharge() const