Geant4
9.6.p02
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
geant4_9_6_p02
examples
advanced
purging_magnet
src
PurgMagPhysicsList.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
// Code developed by:
27
// S.Larsson
28
//
29
// ********************************
30
// * *
31
// * PurgMagPhysicsList.cc *
32
// * *
33
// ********************************
34
//
35
//
36
// $Id$
37
//
38
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
39
40
#include "
PurgMagPhysicsList.hh
"
41
42
#include "
G4SystemOfUnits.hh
"
43
#include "
G4ParticleDefinition.hh
"
44
#include "
G4ParticleWithCuts.hh
"
45
#include "
G4ProcessManager.hh
"
46
#include "
G4ParticleTypes.hh
"
47
#include "
G4ParticleTable.hh
"
48
#include "
G4Material.hh
"
49
#include "
G4UnitsTable.hh
"
50
#include "
G4ios.hh
"
51
52
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
53
54
PurgMagPhysicsList::PurgMagPhysicsList
():
G4VUserPhysicsList
()
55
{
56
defaultCutValue
= 1*
micrometer
;
57
cutForGamma =
defaultCutValue
;
58
cutForElectron =
defaultCutValue
;
59
cutForPositron =
defaultCutValue
;
60
cutForProton =
defaultCutValue
;
61
62
SetVerboseLevel
(1);
63
}
64
65
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
66
67
PurgMagPhysicsList::~PurgMagPhysicsList
()
68
{}
69
70
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
71
72
void
PurgMagPhysicsList::ConstructParticle
()
73
{
74
// In this method, static member functions should be called
75
// for all particles which you want to use.
76
// This ensures that objects of these particle types will be
77
// created in the program.
78
79
ConstructBosons
();
80
ConstructLeptons
();
81
ConstructBarions
();
82
}
83
84
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
85
86
void
PurgMagPhysicsList::ConstructBosons
()
87
{
88
89
// gamma
90
G4Gamma::GammaDefinition
();
91
92
// optical photon
93
G4OpticalPhoton::OpticalPhotonDefinition
();
94
}
95
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
96
97
void
PurgMagPhysicsList::ConstructLeptons
()
98
{
99
// leptons
100
G4Electron::ElectronDefinition
();
101
G4Positron::PositronDefinition
();
102
}
103
104
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
105
106
void
PurgMagPhysicsList::ConstructBarions
()
107
{
108
// barions
109
G4Proton::ProtonDefinition
();
110
G4AntiProton::AntiProtonDefinition
();
111
}
112
113
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
114
115
void
PurgMagPhysicsList::ConstructProcess
()
116
{
117
AddTransportation
();
118
ConstructEM
();
119
ConstructGeneral
();
120
}
121
122
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
123
124
#include "
G4eMultipleScattering.hh
"
125
#include "
G4hMultipleScattering.hh
"
126
// Bosons
127
#include "
G4PhotoElectricEffect.hh
"
128
#include "
G4ComptonScattering.hh
"
129
#include "
G4GammaConversion.hh
"
130
// Leptons
131
#include "
G4eIonisation.hh
"
132
#include "
G4eBremsstrahlung.hh
"
133
#include "
G4eplusAnnihilation.hh
"
134
135
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
136
137
void
PurgMagPhysicsList::ConstructEM
()
138
{
139
theParticleIterator
->
reset
();
140
while
( (*
theParticleIterator
)() )
141
{
142
G4ParticleDefinition
* particle =
theParticleIterator
->
value
();
143
G4ProcessManager
* pmanager = particle->
GetProcessManager
();
144
G4String
particleName = particle->
GetParticleName
();
145
146
147
if
(particleName ==
"gamma"
) {
148
//gamma
149
pmanager->
AddDiscreteProcess
(
new
G4GammaConversion
);
150
pmanager->
AddDiscreteProcess
(
new
G4ComptonScattering
);
151
pmanager->
AddDiscreteProcess
(
new
G4PhotoElectricEffect
);
152
153
}
else
if
(particleName ==
"e-"
) {
154
//electron
155
pmanager->
AddProcess
(
new
G4eBremsstrahlung
, -1,-1,3);
156
pmanager->
AddProcess
(
new
G4eIonisation
, -1, 2,2);
157
pmanager->
AddProcess
(
new
G4eMultipleScattering
, -1, 1,1);
158
159
}
else
if
(particleName ==
"e+"
) {
160
//positron
161
pmanager->
AddProcess
(
new
G4eBremsstrahlung
, -1,-1,3);
162
pmanager->
AddProcess
(
new
G4eIonisation
, -1, 2,2);
163
pmanager->
AddProcess
(
new
G4eMultipleScattering
, -1, 1,1);
164
pmanager->
AddProcess
(
new
G4eplusAnnihilation
, 0,-1,4);
165
166
}
else
if
(particleName ==
"proton"
) {
167
//proton
168
pmanager->
AddProcess
(
new
G4hMultipleScattering
, -1,1,1);
169
170
}
else
if
(particleName ==
"anti_proton"
) {
171
//antiproton
172
pmanager->
AddProcess
(
new
G4hMultipleScattering
, -1,1,1);
173
}
174
}
175
}
176
177
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
178
179
void
PurgMagPhysicsList::ConstructGeneral
()
180
{ }
181
182
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
183
184
void
PurgMagPhysicsList::SetCuts
()
185
{
186
if
(
verboseLevel
>0){
187
G4cout
<<
"PurgMagPhysicsList::SetCuts:"
;
188
G4cout
<<
"CutLength : "
<<
G4BestUnit
(
defaultCutValue
,
"Length"
) <<
G4endl
;
189
}
190
191
// set cut values for gamma at first and for e- second and next for e+,
192
// because some processes for e+/e- need cut values for gamma
193
SetCutValue
(cutForGamma,
"gamma"
);
194
SetCutValue
(cutForElectron,
"e-"
);
195
SetCutValue
(cutForPositron,
"e+"
);
196
197
// set cut values for proton and anti_proton before all other hadrons
198
// because some processes for hadrons need cut values for proton/anti_proton
199
SetCutValue
(cutForProton,
"proton"
);
200
SetCutValue
(cutForProton,
"anti_proton"
);
201
202
// SetCutValueForOthers(defaultCutValue);
203
204
if
(
verboseLevel
>0)
DumpCutValuesTable
();
205
}
206
207
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
208
209
void
PurgMagPhysicsList::SetGammaLowLimit
(
G4double
lowcut)
210
{
211
if
(
verboseLevel
>0){
212
G4cout
<<
"PurgMagPhysicsList::SetCuts:"
;
213
G4cout
<<
"Gamma cut in energy: "
<< lowcut*
MeV
<<
" (MeV)"
<<
G4endl
;
214
}
215
216
// G4Gamma::SetEnergyRange(lowcut,1e5);
217
SetGELowLimit
(lowcut);
218
}
219
220
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
221
222
void
PurgMagPhysicsList::SetElectronLowLimit
(
G4double
lowcut)
223
{
224
if
(
verboseLevel
>0){
225
226
G4cout
<<
"PurgMagPhysicsList::SetCuts:"
;
227
G4cout
<<
"Electron cut in energy: "
<< lowcut*
MeV
<<
" (MeV)"
<<
G4endl
;
228
}
229
230
// G4Electron::SetEnergyRange(lowcut,1e5);
231
SetGELowLimit
(lowcut);
232
}
233
234
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
235
236
void
PurgMagPhysicsList::SetPositronLowLimit
(
G4double
lowcut)
237
{
238
if
(
verboseLevel
>0){
239
240
G4cout
<<
"PurgMagPhysicsList::SetCuts:"
;
241
G4cout
<<
"Positron cut in energy: "
<< lowcut*
MeV
<<
" (MeV)"
<<
G4endl
;
242
}
243
244
G4cerr
<<
"PurgMagPhysicsList::SetPositronLowLimit: Not currently able to set Positron LowLimit."
<<
G4endl
;
245
G4Exception
(
"PurgMagPhysicsList::SetPositronLowLimit()"
,
"PurMag001"
,
246
FatalException
,
"Positron Low Limit: not implemented in PurgMagPhysicsList"
);
247
//
248
// G4Positron::SetEnergyRange(lowcut,1e5);
249
}
250
251
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
252
253
void
PurgMagPhysicsList::SetProtonLowLimit
(
G4double
lowcut)
254
{
255
if
(
verboseLevel
>0){
256
257
G4cout
<<
"PurgMagPhysicsList::SetCuts:"
;
258
G4cout
<<
"Proton cut in energy: "
<< lowcut*
MeV
<<
" (MeV)"
<<
G4endl
;
259
}
260
261
G4cerr
<<
"PurgMagPhysicsList::SetProtonLowLimit: Not currently able to set Proton LowLimit."
<<
G4endl
;
262
G4Exception
(
"PurgMagPhysicsList::SetProtonLowLimit()"
,
"PurMag002"
,
263
FatalException
,
"Proton Low Limit: not implemented in PurgMagPhysicsList"
);
264
//
265
// G4Proton::SetEnergyRange(lowcut,1e5);
266
// G4AntiProton::SetEnergyRange(lowcut,1e5);
267
}
268
269
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
270
271
void
PurgMagPhysicsList::SetGEPLowLimit
(
G4double
lowcut)
272
{
273
if
(
verboseLevel
>0){
274
G4cout
<<
"PurgMagPhysicsList::SetGEPLowLimit:"
;
275
G4cout
<<
"Gamma and Electron cut in energy: "
<< lowcut*
MeV
<<
" (MeV)"
<<
G4endl
;
276
}
277
278
// G4Gamma::SetEnergyRange(lowcut,1e5);
279
// G4Electron::SetEnergyRange(lowcut,1e5);
280
// G4Positron::SetEnergyRange(lowcut,1e5);
281
this->
SetGELowLimit
(lowcut);
282
283
G4cerr
<<
" SetGEPLowLimit : Uncertain whether setting Positron low limit "
<<
G4endl
;
284
}
285
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
286
287
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
288
void
PurgMagPhysicsList::SetGELowLimit
(
G4double
lowcut)
289
{
290
if
(
verboseLevel
>0){
291
G4cout
<<
"PurgMagPhysicsList::SetGELowLimit:"
;
292
G4cout
<<
"Gamma and Electron cut in energy: "
<< lowcut*
MeV
<<
" (MeV)"
<<
G4endl
;
293
}
294
295
G4ProductionCutsTable::GetProductionCutsTable
()->
SetEnergyRange
(lowcut,1e5);
296
}
297
void
PurgMagPhysicsList::SetGammaCut
(
G4double
val)
298
{
299
ResetCuts
();
300
cutForGamma = val;
301
}
302
303
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
304
305
void
PurgMagPhysicsList::SetElectronCut
(
G4double
val)
306
{
307
// ResetCuts();
308
cutForElectron = val;
309
}
310
311
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
312
313
void
PurgMagPhysicsList::SetPositronCut
(
G4double
val)
314
{
315
// ResetCuts();
316
cutForPositron = val;
317
}
318
319
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
320
321
void
PurgMagPhysicsList::SetProtonCut
(
G4double
val)
322
{
323
//ResetCuts();
324
cutForProton = val;
325
}
326
327
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
328
329
330
331
332
333
Generated on Sat May 25 2013 14:32:14 for Geant4 by
1.8.4