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
extended
eventgenerator
exgps
src
exGPSPhysicsList.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
//
28
//
29
#include "
exGPSPhysicsList.hh
"
30
31
#include "
G4ParticleDefinition.hh
"
32
#include "
G4ParticleWithCuts.hh
"
33
#include "
G4ProcessManager.hh
"
34
#include "
G4ProcessVector.hh
"
35
#include "
G4ParticleTypes.hh
"
36
#include "
G4ParticleTable.hh
"
37
#include "
G4Material.hh
"
38
#include "
G4ios.hh
"
39
40
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
41
42
exGPSPhysicsList::exGPSPhysicsList
():
G4VUserPhysicsList
()
43
{
44
SetVerboseLevel
(1);
45
}
46
47
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
48
49
exGPSPhysicsList::~exGPSPhysicsList
()
50
{}
51
52
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
53
54
void
exGPSPhysicsList::ConstructParticle
()
55
{
56
// In this method, static member functions should be called
57
// for all particles which you want to use.
58
// This ensures that objects of these particle types will be
59
// created in the program.
60
61
ConstructBosons
();
62
ConstructLeptons
();
63
ConstructMesons
();
64
ConstructBaryons
();
65
ConstructNuclei
();
66
}
67
68
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
69
70
void
exGPSPhysicsList::ConstructBosons
()
71
{
72
// pseudo-particles
73
G4Geantino::GeantinoDefinition
();
74
G4ChargedGeantino::ChargedGeantinoDefinition
();
75
76
// gamma
77
G4Gamma::GammaDefinition
();
78
79
// optical photon
80
G4OpticalPhoton::OpticalPhotonDefinition
();
81
}
82
83
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
84
85
#include "
G4LeptonConstructor.hh
"
86
void
exGPSPhysicsList::ConstructLeptons
()
87
{
88
// Construct all leptons
89
G4LeptonConstructor
pConstructor;
90
pConstructor.
ConstructParticle
();
91
}
92
93
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
94
95
#include "
G4MesonConstructor.hh
"
96
void
exGPSPhysicsList::ConstructMesons
()
97
{
98
// Construct all mesons
99
G4MesonConstructor
pConstructor;
100
pConstructor.
ConstructParticle
();
101
}
102
103
104
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
105
106
#include "
G4BaryonConstructor.hh
"
107
void
exGPSPhysicsList::ConstructBaryons
()
108
{
109
// Construct all barions
110
G4BaryonConstructor
pConstructor;
111
pConstructor.
ConstructParticle
();
112
}
113
114
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
115
116
void
exGPSPhysicsList::ConstructNuclei
()
117
{
118
G4Deuteron::DeuteronDefinition
();
119
G4Triton::TritonDefinition
();
120
G4He3::He3Definition
();
121
G4Alpha::AlphaDefinition
();
122
G4GenericIon::GenericIonDefinition
();
123
}
124
125
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
126
127
void
exGPSPhysicsList::ConstructProcess
()
128
{
129
AddTransportation
();
130
}
131
132
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
133
134
void
exGPSPhysicsList::SetCuts
()
135
{
136
// surppress error messages even in case e/gamma/proton do not exist
137
G4int
temp =
GetVerboseLevel
();
138
SetVerboseLevel
(0);
139
// " G4VUserPhysicsList::SetCutsWithDefault" method sets
140
// the default cut value for all particle types
141
SetCutsWithDefault
();
142
143
// Retrieve verbose level
144
SetVerboseLevel
(temp);
145
}
146
147
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
Generated on Sat May 25 2013 14:32:22 for Geant4 by
1.8.4