Geant4  9.6.p02
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
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 
43 {
44  SetVerboseLevel(1);
45 }
46 
47 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
48 
50 {}
51 
52 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
53 
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 
66 }
67 
68 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
69 
71 {
72  // pseudo-particles
75 
76  // gamma
78 
79  // optical photon
81 }
82 
83 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
84 
85 #include "G4LeptonConstructor.hh"
87 {
88  // Construct all leptons
89  G4LeptonConstructor pConstructor;
90  pConstructor.ConstructParticle();
91 }
92 
93 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
94 
95 #include "G4MesonConstructor.hh"
97 {
98  // Construct all mesons
99  G4MesonConstructor pConstructor;
100  pConstructor.ConstructParticle();
101 }
102 
103 
104 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
105 
106 #include "G4BaryonConstructor.hh"
108 {
109  // Construct all barions
110  G4BaryonConstructor pConstructor;
111  pConstructor.ConstructParticle();
112 }
113 
114 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
115 
117 {
123 }
124 
125 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
126 
128 {
130 }
131 
132 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
133 
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
142 
143  // Retrieve verbose level
144  SetVerboseLevel(temp);
145 }
146 
147 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....