Geant4  10.03.p02
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PhysicsList.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 // $Id: PhysicsList.cc 100263 2016-10-17 08:08:40Z gcosmo $
30 //
31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
33 
34 #include "PhysicsList.hh"
35 #include "PhysicsListMessenger.hh"
36 
37 #include "PhysListEmStandard_option0.hh"
38 #include "PhysListEmStandard_option3.hh"
39 #include "PhysListEmStandard_GS.hh"
40 #include "PhysListEmStandard_WVI.hh"
41 #include "PhysListEmStandard_SS.hh"
42 
43 #include "StepMax.hh"
44 
45 #include "G4ParticleDefinition.hh"
46 
47 #include "G4ProcessManager.hh"
48 #include "G4LossTableManager.hh"
49 
50 // Bosons
51 #include "G4ChargedGeantino.hh"
52 #include "G4Geantino.hh"
53 #include "G4Gamma.hh"
54 
55 // leptons
56 #include "G4Electron.hh"
57 #include "G4Positron.hh"
58 
59 // Hadrons
60 #include "G4Proton.hh"
61 
62 #include "G4SystemOfUnits.hh"
63 
64 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
65 
67 : G4VModularPhysicsList(), fMessenger(0), fEmPhysicsList(0)
68 {
70  fMessenger = new PhysicsListMessenger(this);
71 
72  // EM physics
73  fEmName = G4String("standard_opt3");
74  fEmPhysicsList = new PhysListEmStandard_option3(fEmName);
75 
76  defaultCutValue = 10*km;
77 
78  SetVerboseLevel(1);
79 
81 }
82 
83 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
84 
86 {
87  delete fEmPhysicsList;
88  delete fMessenger;
89 }
90 
91 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
92 
94 {
95 
96  // pseudo-particles
99 
100  // gamma
102 
103  // leptons
106 
107  // baryons
109 }
110 
111 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
112 
114 {
116  fEmPhysicsList->ConstructProcess();
117 
118  AddStepMax();
119 }
120 
121 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
122 
124 {
125  // Step limitation seen as a process
126  StepMax* stepMaxProcess = new StepMax();
127 
129  particleIterator->reset();
130  while ((*particleIterator)()){
131  G4ParticleDefinition* particle = particleIterator->value();
132  G4ProcessManager* pmanager = particle->GetProcessManager();
133 
134  if (stepMaxProcess->IsApplicable(*particle) && !particle->IsShortLived())
135  {
136  pmanager ->AddDiscreteProcess(stepMaxProcess);
137  }
138  }
139 }
140 
141 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
142 
144 {
145  if (verboseLevel>-1) {
146  G4cout << "PhysicsList::AddPhysicsList: <" << name << ">" << G4endl;
147  }
148 
149  if (name == fEmName) return;
150 
151  if (name == "standard_opt0") {
152 
153  fEmName = name;
154  delete fEmPhysicsList;
155  fEmPhysicsList = new PhysListEmStandard_option0(name);
156 
157  } else if (name == "standard_opt3") {
158 
159  fEmName = name;
160  delete fEmPhysicsList;
161  fEmPhysicsList = new PhysListEmStandard_option3(name);
162 
163  } else if (name == "standard_GS") {
164 
165  fEmName = name;
166  delete fEmPhysicsList;
167  fEmPhysicsList = new PhysListEmStandard_GS(name);
168 
169  } else if (name == "standard_WVI") {
170 
171  fEmName = name;
172  delete fEmPhysicsList;
173  fEmPhysicsList = new PhysListEmStandard_WVI(name);
174 
175  } else if (name == "standard_SS") {
176 
177  fEmName = name;
178  delete fEmPhysicsList;
179  fEmPhysicsList = new PhysListEmStandard_SS(name);
180 
181  } else {
182 
183  G4cout << "PhysicsList::AddPhysicsList: <" << name << ">"
184  << " is not defined"
185  << G4endl;
186  }
187 }
188 
189 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
190 
191 #include "G4UnitsTable.hh"
192 
194 {
195  if (verboseLevel >0){
196  G4cout << "PhysicsList::SetCuts:";
197  G4cout << "CutLength : " << G4BestUnit(defaultCutValue,"Length") << G4endl;
198  }
199 
200  // set cut values for gamma at first and for e- second and next for e+,
201  // because some processes for e+/e- need cut values for gamma
202  SetCutValue(defaultCutValue, "gamma");
205  SetCutValue(defaultCutValue, "proton");
206 }
207 
208 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
static G4Geantino * GeantinoDefinition()
Definition: G4Geantino.cc:82
static G4Electron * ElectronDefinition()
Definition: G4Electron.cc:89
const XML_Char * name
Definition: expat.h:151
void ConstructParticle()
Definition: PhysicsList.cc:117
static constexpr double km
Definition: G4SIunits.hh:133
static G4LossTableManager * Instance()
void SetCutValue(G4double aCut, const G4String &pname)
static G4Proton * ProtonDefinition()
Definition: G4Proton.cc:88
G4int AddDiscreteProcess(G4VProcess *aProcess, G4int ord=ordDefault)
#define G4BestUnit(a, b)
#define G4_USE_G4BESTUNIT_FOR_VERBOSE 1
void AddPhysicsList(const G4String &name)
Definition: PhysicsList.cc:191
G4GLOB_DLL std::ostream G4cout
void SetVerboseLevel(G4int value)
void SetCuts()
Definition: PhysicsList.cc:219
void AddStepMax()
Definition: PhysicsList.cc:172
static G4Positron * PositronDefinition()
Definition: G4Positron.cc:89
G4ProcessManager * GetProcessManager() const
virtual G4bool IsApplicable(const G4ParticleDefinition &)
Definition: StepMax.cc:51
virtual void ConstructProcess()=0
std::vector< G4InuclElementaryParticle >::iterator particleIterator
Definition: G4BigBanger.cc:65
static G4ChargedGeantino * ChargedGeantinoDefinition()
G4ParticleTable::G4PTblDicIterator * GetParticleIterator() const
#define G4endl
Definition: G4ios.hh:61
void ConstructProcess()
Definition: PhysicsList.cc:170
static G4Gamma * GammaDefinition()
Definition: G4Gamma.cc:81