Geant4
v4-10.4-release
메인 페이지
관련된 페이지
모듈
네임스페이스
클래스
파일들
파일 목록
파일 멤버
모두
클래스
네임스페이스들
파일들
함수
변수
타입정의
열거형 타입
열거형 멤버
Friends
매크로
그룹들
페이지들
examples
extended
electromagnetic
TestEm12
src
PhysListEmStandardSSM.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
// $Id: PhysListEmStandardSSM.cc 100335 2016-10-18 07:37:53Z gcosmo $
30
//
31
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
32
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
33
34
#include "
PhysListEmStandardSSM.hh
"
35
36
#include "
G4ParticleDefinition.hh
"
37
#include "
G4ProcessManager.hh
"
38
39
#include "
G4ComptonScattering.hh
"
40
#include "
G4GammaConversion.hh
"
41
#include "
G4PhotoElectricEffect.hh
"
42
43
#include "
G4CoulombScattering.hh
"
44
#include "
G4eCoulombScatteringModel.hh
"
45
#include "
G4eSingleCoulombScatteringModel.hh
"
46
#include "
G4IonCoulombScatteringModel.hh
"
47
48
#include "
G4eIonisation.hh
"
49
#include "
G4eBremsstrahlung.hh
"
50
#include "
G4eplusAnnihilation.hh
"
51
52
#include "
G4MuIonisation.hh
"
53
#include "
G4MuBremsstrahlung.hh
"
54
#include "
G4MuPairProduction.hh
"
55
56
#include "
G4hIonisation.hh
"
57
#include "
G4ionIonisation.hh
"
58
59
#include "
G4SystemOfUnits.hh
"
60
61
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
62
63
PhysListEmStandardSSM::PhysListEmStandardSSM
(
const
G4String
&
name
)
64
:
G4VPhysicsConstructor
(name)
65
{}
66
67
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
68
69
PhysListEmStandardSSM::~PhysListEmStandardSSM
()
70
{}
71
72
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
73
74
void
PhysListEmStandardSSM::ConstructProcess
()
75
{
76
// Add standard EM Processes
77
78
auto
particleIterator
=
GetParticleIterator
();
79
particleIterator
->reset();
80
while
( (*
particleIterator
)() ){
81
G4ParticleDefinition
* particle =
particleIterator
->value();
82
G4ProcessManager
* pmanager = particle->
GetProcessManager
();
83
G4String
particleName = particle->
GetParticleName
();
84
85
if
(particleName ==
"gamma"
) {
86
// gamma
87
pmanager->
AddDiscreteProcess
(
new
G4PhotoElectricEffect
);
88
pmanager->
AddDiscreteProcess
(
new
G4ComptonScattering
);
89
pmanager->
AddDiscreteProcess
(
new
G4GammaConversion
);
90
91
}
else
if
(particleName ==
"e-"
) {
92
//electron
93
pmanager->
AddProcess
(
new
G4eIonisation
, -1, 1, 1);
94
pmanager->
AddProcess
(
new
G4eBremsstrahlung
, -1, 2, 2);
95
96
G4CoulombScattering
* cs =
new
G4CoulombScattering
();
97
G4eSingleCoulombScatteringModel
*
model
=
98
new
G4eSingleCoulombScatteringModel
();
99
//model->SetLowEnergyThreshold(10*eV);
100
model->
SetPolarAngleLimit
(0.0);
101
cs->
AddEmModel
(0, model);
102
pmanager->
AddDiscreteProcess
(cs);
103
104
}
else
if
(particleName ==
"e+"
) {
105
//positron
106
107
pmanager->
AddProcess
(
new
G4eIonisation
, -1, 1, 1);
108
pmanager->
AddProcess
(
new
G4eBremsstrahlung
, -1, 2, 2);
109
pmanager->
AddProcess
(
new
G4eplusAnnihilation
, 0,-1, 3);
110
111
G4CoulombScattering
* cs =
new
G4CoulombScattering
();
112
G4eSingleCoulombScatteringModel
*
model
=
113
new
G4eSingleCoulombScatteringModel
();
114
model->
SetPolarAngleLimit
(0.0);
115
cs->
AddEmModel
(0, model);
116
pmanager->
AddDiscreteProcess
(cs);
117
118
}
else
if
(particleName ==
"mu+"
||
119
particleName ==
"mu-"
) {
120
//muon
121
pmanager->
AddProcess
(
new
G4MuIonisation
, -1, 1, 1);
122
pmanager->
AddProcess
(
new
G4MuBremsstrahlung
, -1, 2, 2);
123
pmanager->
AddProcess
(
new
G4MuPairProduction
, -1, 3, 3);
124
G4CoulombScattering
* cs =
new
G4CoulombScattering
();
125
G4eCoulombScatteringModel
*
model
=
new
G4eCoulombScatteringModel
();
126
model->
SetPolarAngleLimit
(0.0);
127
cs->
AddEmModel
(0, model);
128
pmanager->
AddDiscreteProcess
(cs);
129
130
131
}
else
if
(particleName ==
"alpha"
|| particleName ==
"He3"
) {
132
pmanager->
AddProcess
(
new
G4ionIonisation
, -1, 1, 1);
133
G4CoulombScattering
* cs =
new
G4CoulombScattering
();
134
cs->
AddEmModel
(0,
new
G4IonCoulombScatteringModel
());
135
cs->
SetBuildTableFlag
(
false
);
136
pmanager->
AddDiscreteProcess
(cs);
137
138
}
else
if
(particleName ==
"GenericIon"
) {
139
pmanager->
AddProcess
(
new
G4ionIonisation
, -1, 1, 1);
140
G4CoulombScattering
* cs =
new
G4CoulombScattering
();
141
cs->
AddEmModel
(0,
new
G4IonCoulombScatteringModel
());
142
cs->
SetBuildTableFlag
(
false
);
143
pmanager->
AddDiscreteProcess
(cs);
144
145
}
else
if
((!particle->
IsShortLived
()) &&
146
(particle->
GetPDGCharge
() != 0.0) &&
147
(particle->
GetParticleName
() !=
"chargedgeantino"
)) {
148
//all others charged particles except geantino
149
pmanager->
AddProcess
(
new
G4hIonisation
, -1, 1, 1);
150
pmanager->
AddDiscreteProcess
(
new
G4CoulombScattering
);
151
}
152
}
153
}
154
155
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
156
name
const XML_Char * name
Definition:
expat.h:151
G4ionIonisation
Definition:
G4ionIonisation.hh:78
G4MuBremsstrahlung.hh
G4MuIonisation
Definition:
G4MuIonisation.hh:85
G4PhotoElectricEffect.hh
G4eplusAnnihilation.hh
G4CoulombScattering.hh
G4ProcessManager::AddDiscreteProcess
G4int AddDiscreteProcess(G4VProcess *aProcess, G4int ord=ordDefault)
G4VEmProcess::SetBuildTableFlag
void SetBuildTableFlag(G4bool val)
Definition:
G4VEmProcess.hh:665
PhysListEmStandardSSM::~PhysListEmStandardSSM
~PhysListEmStandardSSM()
Definition:
PhysListEmStandardSSM.cc:69
G4ParticleDefinition::GetParticleName
const G4String & GetParticleName() const
Definition:
G4ParticleDefinition.hh:121
G4String
Definition:
examples/extended/parallel/TopC/ParN02/AnnotatedFiles/G4String.hh:45
G4IonCoulombScatteringModel
Definition:
G4IonCoulombScatteringModel.hh:71
G4ParticleDefinition::GetPDGCharge
G4double GetPDGCharge() const
Definition:
G4ParticleDefinition.hh:125
G4ComptonScattering
Definition:
G4ComptonScattering.hh:71
G4GammaConversion.hh
G4hIonisation
Definition:
G4hIonisation.hh:85
G4eCoulombScatteringModel
Definition:
G4eCoulombScatteringModel.hh:78
G4ProcessManager::AddProcess
G4int AddProcess(G4VProcess *aProcess, G4int ordAtRestDoIt=ordInActive, G4int ordAlongSteptDoIt=ordInActive, G4int ordPostStepDoIt=ordInActive)
Definition:
G4ProcessManager.cc:410
G4ProcessManager.hh
PhysListEmStandardSSM.hh
Definition of the PhysListEmStandardSSM class.
G4eplusAnnihilation
Definition:
G4eplusAnnihilation.hh:65
G4eBremsstrahlung.hh
G4SystemOfUnits.hh
G4eIonisation
Definition:
G4eIonisation.hh:80
G4MuPairProduction
Definition:
G4MuPairProduction.hh:74
G4ParticleDefinition
Definition:
G4ParticleDefinition.hh:73
G4VEmModel::SetPolarAngleLimit
void SetPolarAngleLimit(G4double)
Definition:
G4VEmModel.hh:742
G4eCoulombScatteringModel.hh
G4CoulombScattering
Definition:
G4CoulombScattering.hh:55
G4VPhysicsConstructor
Definition:
G4VPhysicsConstructor.hh:126
G4ionIonisation.hh
G4eSingleCoulombScatteringModel.hh
G4MuBremsstrahlung
Definition:
G4MuBremsstrahlung.hh:78
G4IonCoulombScatteringModel.hh
G4ParticleDefinition::GetProcessManager
G4ProcessManager * GetProcessManager() const
Definition:
G4ParticleDefinition.cc:258
G4GammaConversion
Definition:
G4GammaConversion.hh:75
particleIterator
std::vector< G4InuclElementaryParticle >::iterator particleIterator
Definition:
G4BigBanger.cc:65
G4eBremsstrahlung
Definition:
G4eBremsstrahlung.hh:81
G4VPhysicsConstructor::GetParticleIterator
G4ParticleTable::G4PTblDicIterator * GetParticleIterator() const
Definition:
G4VPhysicsConstructor.cc:82
G4ComptonScattering.hh
G4MuPairProduction.hh
G4ParticleDefinition.hh
G4VEmProcess::AddEmModel
void AddEmModel(G4int, G4VEmModel *, const G4Region *region=nullptr)
Definition:
G4VEmProcess.cc:213
G4MuIonisation.hh
G4ParticleDefinition::IsShortLived
G4bool IsShortLived() const
Definition:
G4ParticleDefinition.hh:158
G4hIonisation.hh
G4eIonisation.hh
PhysListEmStandardSSM::PhysListEmStandardSSM
PhysListEmStandardSSM(const G4String &name="standardSSM")
Definition:
PhysListEmStandardSSM.cc:63
G4PhotoElectricEffect
Definition:
G4PhotoElectricEffect.hh:79
model
const XML_Char XML_Content * model
Definition:
expat.h:151
G4ProcessManager
Definition:
G4ProcessManager.hh:106
G4eSingleCoulombScatteringModel
Definition:
G4eSingleCoulombScatteringModel.hh:66
PhysListEmStandardSSM::ConstructProcess
virtual void ConstructProcess()
Definition:
PhysListEmStandardSSM.cc:74
다음에 의해 생성됨 :
1.8.5