ECCE @ EIC Software
Reference for
ECCE @ EIC
simulation and reconstruction software on GitHub
Home page
Related Pages
Modules
Namespaces
Classes
Files
External Links
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
PhysListEmStandardWVI.cc
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file PhysListEmStandardWVI.cc
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
//
28
//
29
//
30
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
31
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
32
33
#include "
PhysListEmStandardWVI.hh
"
34
35
#include "
G4BuilderType.hh
"
36
#include "
G4ParticleDefinition.hh
"
37
#include "
G4ProcessManager.hh
"
38
39
#include "
G4ComptonScattering.hh
"
40
#include "
G4GammaConversion.hh
"
41
#include "
G4PhotoElectricEffect.hh
"
42
43
#include "
G4eMultipleScattering.hh
"
44
#include "
G4WentzelVIModel.hh
"
45
#include "
G4CoulombScattering.hh
"
46
#include "
G4eIonisation.hh
"
47
#include "
G4eBremsstrahlung.hh
"
48
#include "
G4eplusAnnihilation.hh
"
49
50
#include "
G4MuMultipleScattering.hh
"
51
#include "
G4MuIonisation.hh
"
52
#include "
G4MuBremsstrahlung.hh
"
53
#include "
G4MuPairProduction.hh
"
54
55
#include "
G4hMultipleScattering.hh
"
56
#include "
G4hIonisation.hh
"
57
#include "
G4hBremsstrahlung.hh
"
58
#include "
G4hPairProduction.hh
"
59
60
#include "
G4ionIonisation.hh
"
61
#include "
G4IonParametrisedLossModel.hh
"
62
#include "
G4NuclearStopping.hh
"
63
64
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
65
66
PhysListEmStandardWVI::PhysListEmStandardWVI
(
const
G4String
&
name
)
67
:
G4VPhysicsConstructor
(name)
68
{
69
SetPhysicsType
(
bElectromagnetic
);
70
71
G4EmParameters
* param =
G4EmParameters::Instance
();
72
param->
SetDefaults
();
73
param->
SetMscThetaLimit
(0.2);
74
}
75
76
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
77
78
PhysListEmStandardWVI::~PhysListEmStandardWVI
()
79
{}
80
81
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
82
83
void
PhysListEmStandardWVI::ConstructProcess
()
84
{
85
// Add standard EM Processes
86
//
87
88
auto
particleIterator
=
GetParticleIterator
();
89
particleIterator
->reset();
90
while
( (*
particleIterator
)() ){
91
G4ParticleDefinition
*
particle
=
particleIterator
->value();
92
G4ProcessManager
* pmanager = particle->
GetProcessManager
();
93
G4String
particleName = particle->
GetParticleName
();
94
95
if
(particleName ==
"gamma"
) {
96
// gamma
97
pmanager->
AddDiscreteProcess
(
new
G4PhotoElectricEffect
);
98
pmanager->
AddDiscreteProcess
(
new
G4ComptonScattering
);
99
pmanager->
AddDiscreteProcess
(
new
G4GammaConversion
);
100
101
}
else
if
(particleName ==
"e-"
) {
102
//electron
103
G4MuMultipleScattering
* msc =
new
G4MuMultipleScattering
();
104
msc->
AddEmModel
(0,
new
G4WentzelVIModel
());
105
pmanager->
AddProcess
(msc, -1, 1, 1);
106
pmanager->
AddProcess
(
new
G4eIonisation
, -1, 2, 2);
107
pmanager->
AddProcess
(
new
G4eBremsstrahlung
, -1, 3, 3);
108
pmanager->
AddProcess
(
new
G4CoulombScattering
, -1,-1, 4);
109
110
}
else
if
(particleName ==
"e+"
) {
111
//positron
112
G4MuMultipleScattering
* msc =
new
G4MuMultipleScattering
();
113
msc->
AddEmModel
(0,
new
G4WentzelVIModel
());
114
pmanager->
AddProcess
(msc, -1, 1, 1);
115
pmanager->
AddProcess
(
new
G4eIonisation
, -1, 2, 2);
116
pmanager->
AddProcess
(
new
G4eBremsstrahlung
, -1, 3, 3);
117
pmanager->
AddProcess
(
new
G4eplusAnnihilation
, 0,-1, 4);
118
pmanager->
AddProcess
(
new
G4CoulombScattering
, -1,-1, 5);
119
120
}
else
if
(particleName ==
"mu+"
||
121
particleName ==
"mu-"
) {
122
//muon
123
G4MuMultipleScattering
* msc =
new
G4MuMultipleScattering
();
124
msc->
AddEmModel
(0,
new
G4WentzelVIModel
());
125
pmanager->
AddProcess
(msc, -1, 1, 1);
126
pmanager->
AddProcess
(
new
G4MuIonisation
, -1, 2, 2);
127
pmanager->
AddProcess
(
new
G4MuBremsstrahlung
, -1, 3, 3);
128
pmanager->
AddProcess
(
new
G4MuPairProduction
, -1, 4, 4);
129
pmanager->
AddProcess
(
new
G4CoulombScattering
, -1,-1, 5);
130
131
}
else
if
( particleName ==
"proton"
||
132
particleName ==
"pi-"
||
133
particleName ==
"pi+"
) {
134
//proton
135
G4hMultipleScattering
* msc =
new
G4hMultipleScattering
();
136
pmanager->
AddProcess
(msc, -1, 1, 1);
137
pmanager->
AddProcess
(
new
G4hIonisation
, -1, 2, 2);
138
pmanager->
AddProcess
(
new
G4hBremsstrahlung
, -1, 3, 3);
139
pmanager->
AddProcess
(
new
G4hPairProduction
, -1, 4, 4);
140
141
}
else
if
( particleName ==
"alpha"
||
142
particleName ==
"He3"
) {
143
//alpha
144
G4hMultipleScattering
* msc =
new
G4hMultipleScattering
();
145
pmanager->
AddProcess
(msc, -1, 1, 1);
146
pmanager->
AddProcess
(
new
G4ionIonisation
, -1, 2, 2);
147
pmanager->
AddProcess
(
new
G4NuclearStopping
, -1, 3,-1);
148
149
}
else
if
( particleName ==
"GenericIon"
) {
150
//Ions
151
G4hMultipleScattering
* msc =
new
G4hMultipleScattering
();
152
pmanager->
AddProcess
(msc, -1, 1, 1);
153
G4ionIonisation
* ionIoni =
new
G4ionIonisation
();
154
ionIoni->
SetEmModel
(
new
G4IonParametrisedLossModel
());
155
pmanager->
AddProcess
(ionIoni, -1, 2, 2);
156
pmanager->
AddProcess
(
new
G4NuclearStopping
, -1, 3,-1);
157
158
}
else
if
((!particle->
IsShortLived
()) &&
159
(particle->
GetPDGCharge
() != 0.0) &&
160
(particle->
GetParticleName
() !=
"chargedgeantino"
)) {
161
//all others charged particles except geantino
162
G4hMultipleScattering
* msc =
new
G4hMultipleScattering
();
163
pmanager->
AddProcess
(msc, -1, 1, 1);
164
pmanager->
AddProcess
(
new
G4hIonisation
, -1, 2, 2);
165
}
166
}
167
}
168
169
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
170
geant4
tree
geant4-10.6-release
examples
extended
medical
electronScattering
src
PhysListEmStandardWVI.cc
Built by
Jin Huang
. updated:
Wed Jun 29 2022 17:25:08
using
1.8.2 with
ECCE GitHub integration