Geant4  10.02.p01
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 92047 2015-08-14 07:23:37Z gcosmo $
30 //
31 //---------------------------------------------------------------------------
32 //
33 // ClassName: PhysicsList
34 //
35 // Description: EM physics with a possibility to add PAI model
36 //
37 // Author: V.Ivanchenko 01.09.2010
38 //
39 //----------------------------------------------------------------------------
40 //
41 
42 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
43 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
44 
45 #include "PhysicsList.hh"
46 #include "PhysicsListMessenger.hh"
47 
48 #include "G4EmStandardPhysics.hh"
53 #include "G4EmStandardPhysicsGS.hh"
54 #include "G4EmStandardPhysicsSS.hh"
56 #include "G4EmLivermorePhysics.hh"
57 #include "G4EmPenelopePhysics.hh"
58 #include "G4EmLowEPPhysics.hh"
59 #include "G4DecayPhysics.hh"
60 
61 #include "G4PAIModel.hh"
62 #include "G4PAIPhotModel.hh"
63 
64 #include "G4Gamma.hh"
65 #include "G4Electron.hh"
66 #include "G4Positron.hh"
67 #include "G4Proton.hh"
68 
69 #include "G4UnitsTable.hh"
70 #include "G4SystemOfUnits.hh"
71 #include "G4LossTableManager.hh"
72 #include "G4ProductionCutsTable.hh"
73 #include "G4EmConfigurator.hh"
74 #include "G4EmParameters.hh"
75 
76 #include "StepMax.hh"
77 
78 #include "G4ProcessManager.hh"
79 #include "G4ParticleTypes.hh"
80 #include "G4ParticleTable.hh"
81 
83 
84 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
85 
87  fEmPhysicsList(0),
88  fDecayPhysicsList(0),
89  fMessenger(0)
90 {
91  // set verbosity for zero to avoid double printout
92  // on physics verbosity should be restored to 1 when cuts
93  // are set
95 
97 
98  fMessenger = new PhysicsListMessenger(this);
99 
100  // Decay Physics is always defined
102 
103  // EM physics
104  fEmName = G4String("emstandard_opt0");
106 
107  SetVerboseLevel(1);
108 }
109 
110 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
111 
113 {
114  delete fMessenger;
115  delete fDecayPhysicsList;
116  delete fEmPhysicsList;
117 }
118 
119 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
120 
122 {
124 }
125 
126 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
127 
129 {
133  AddStepMax();
134 }
135 
136 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
137 
139 {
140  if (verboseLevel>1) {
141  G4cout << "PhysicsList::AddPhysicsList: <" << name << ">" << G4endl;
142  }
143 
144  if (name == fEmName) {
145  return;
146 
147  } else if (name == "emstandard_opt0") {
148 
149  fEmName = name;
150  delete fEmPhysicsList;
152 
153  } else if (name == "emstandard_opt1") {
154 
155  fEmName = name;
156  delete fEmPhysicsList;
158 
159  } else if (name == "emstandard_opt2") {
160 
161  fEmName = name;
162  delete fEmPhysicsList;
164 
165  } else if (name == "emstandard_opt3") {
166 
167  fEmName = name;
168  delete fEmPhysicsList;
170 
171  } else if (name == "emstandard_opt4") {
172 
173  fEmName = name;
174  delete fEmPhysicsList;
176 
177  } else if (name == "emstandardWVI") {
178 
179  fEmName = name;
180  delete fEmPhysicsList;
182 
183  } else if (name == "emstandardSS") {
184 
185  fEmName = name;
186  delete fEmPhysicsList;
188 
189  } else if (name == "emstandardGS") {
190 
191  fEmName = name;
192  delete fEmPhysicsList;
194 
195  } else if (name == "emlivermore") {
196 
197  fEmName = name;
198  delete fEmPhysicsList;
200 
201  } else if (name == "empenelope") {
202 
203  fEmName = name;
204  delete fEmPhysicsList;
206 
207  } else if (name == "emlowenergy") {
208 
209  fEmName = name;
210  delete fEmPhysicsList;
212 
213  } else {
214 
215  G4cout << "PhysicsList::AddPhysicsList: <" << name << ">"
216  << " is not defined"
217  << G4endl;
218  }
219 }
220 
221 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
222 
224 {
225  // Step limitation seen as a process
226  fStepMaxProcess = new StepMax();
227 
228  theParticleIterator->reset();
229  while ((*theParticleIterator)())
230  {
231  G4ParticleDefinition* particle = theParticleIterator->value();
232  G4ProcessManager* pmanager = particle->GetProcessManager();
233 
234  if (fStepMaxProcess->IsApplicable(*particle))
235  {
237  }
238  }
239 }
240 
241 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
242 
244 {
246  if ( verboseLevel > 0 ) { DumpCutValuesTable(); }
247 }
248 
249 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
250 
void SetDefaultCutValue(G4double newCutValue)
void ConstructParticle()
Definition: PhysicsList.cc:117
void SetVerbose(G4int val)
void SetEnergyRange(G4double lowedge, G4double highedge)
G4String name
Definition: TRTMaterials.hh:40
G4int AddDiscreteProcess(G4VProcess *aProcess, G4int ord=ordDefault)
#define G4ThreadLocal
Definition: tls.hh:89
G4ProcessManager * GetProcessManager() const
PhysicsListMessenger * fMessenger
Definition: PhysicsList.hh:78
void AddPhysicsList(const G4String &name)
Definition: PhysicsList.cc:191
virtual void ConstructParticle()=0
void DumpCutValuesTable(G4int flag=1)
G4GLOB_DLL std::ostream G4cout
void SetVerboseLevel(G4int value)
void SetCuts()
Definition: PhysicsList.cc:219
void AddStepMax()
Definition: PhysicsList.cc:172
G4VPhysicsConstructor * fDecayPhysicsList
Definition: PhysicsList.hh:75
static G4ProductionCutsTable * GetProductionCutsTable()
static const double eV
Definition: G4SIunits.hh:212
static G4EmParameters * Instance()
G4VPhysicsConstructor * fEmPhysicsList
Definition: PhysicsList.hh:73
virtual void ConstructProcess()=0
G4StepLimiter * fStepMaxProcess
Definition: PhysicsList.hh:76
#define G4endl
Definition: G4ios.hh:61
G4String fEmName
Definition: PhysicsList.hh:72
void ConstructProcess()
Definition: PhysicsList.cc:170
static const double mm
Definition: G4SIunits.hh:114
#define theParticleIterator
virtual G4bool IsApplicable(const G4ParticleDefinition &)
Definition: G4VProcess.hh:205