Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
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: PurgMagPhysicsList.cc 69086 2013-04-18 07:29:59Z gcosmo $
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 
55 {
57  cutForGamma = defaultCutValue;
58  cutForElectron = defaultCutValue;
59  cutForPositron = defaultCutValue;
60  cutForProton = defaultCutValue;
61 
62  SetVerboseLevel(1);
63 }
64 
65 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
66 
68 {}
69 
70 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
71 
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 
82 }
83 
84 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
85 
87 {
88 
89  // gamma
91 
92  // optical photon
94 }
95  //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
96 
98 {
99  // leptons
102 }
103 
104 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
105 
107 {
108  // barions
111 }
112 
113 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
114 
116 {
118  ConstructEM();
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 
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);
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 
180 { }
181 
182 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
183 
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 
205 }
206 
207 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
208 
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 
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 
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 
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 
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....
289 {
290  if (verboseLevel >0){
291  G4cout << "PurgMagPhysicsList::SetGELowLimit:";
292  G4cout << "Gamma and Electron cut in energy: " << lowcut*MeV << " (MeV)" << G4endl;
293  }
294 
296 }
298 {
299  ResetCuts();
300  cutForGamma = val;
301 }
302 
303 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
304 
306 {
307  // ResetCuts();
308  cutForElectron = val;
309 }
310 
311 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
312 
314 {
315  // ResetCuts();
316  cutForPositron = val;
317 }
318 
319 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
320 
322 {
323  //ResetCuts();
324  cutForProton = val;
325 }
326 
327 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
328 
329 
330 
331 
332 
333 
static G4Electron * ElectronDefinition()
Definition: G4Electron.cc:89
void SetGEPLowLimit(G4double)
void SetPositronCut(G4double)
void SetCutValue(G4double aCut, const G4String &pname)
void SetEnergyRange(G4double lowedge, G4double highedge)
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 SetElectronCut(G4double)
void SetGELowLimit(G4double)
void SetGammaCut(G4double)
static G4AntiProton * AntiProtonDefinition()
Definition: G4AntiProton.cc:88
G4ProcessManager * GetProcessManager() const
const G4String & GetParticleName() const
void SetGammaLowLimit(G4double)
void DumpCutValuesTable(G4int flag=1)
G4GLOB_DLL std::ostream G4cout
void SetProtonCut(G4double)
void SetVerboseLevel(G4int value)
G4int AddProcess(G4VProcess *aProcess, G4int ordAtRestDoIt=ordInActive, G4int ordAlongSteptDoIt=ordInActive, G4int ordPostStepDoIt=ordInActive)
void SetElectronLowLimit(G4double)
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *comments)
Definition: G4Exception.cc:41
static G4Positron * PositronDefinition()
Definition: G4Positron.cc:89
static G4ProductionCutsTable * GetProductionCutsTable()
void SetPositronLowLimit(G4double)
void ResetCuts()
obsolete methods
#define G4endl
Definition: G4ios.hh:61
void SetProtonLowLimit(G4double)
static G4OpticalPhoton * OpticalPhotonDefinition()
double G4double
Definition: G4Types.hh:76
int micrometer
Definition: hepunit.py:34
#define theParticleIterator
G4GLOB_DLL std::ostream G4cerr
static G4Gamma * GammaDefinition()
Definition: G4Gamma.cc:81