Geant4  9.6.p02
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
GammaRayTelHadronPhysics.hh
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 // $Id$
27 //
28 // ------------------------------------------------------------
29 // GEANT 4 class header file
30 //
31 // This class is an derived class of G4VPhysicsConstructor
32 //
33 // ------------------------------------------------------------
34 #ifndef GammaRayTelHadronPhysics_h
35 #define GammaRayTelHadronPhysics_h 1
36 
37 #include "globals.hh"
38 #include "G4ios.hh"
39 #include <vector>
40 
41 #include "G4VPhysicsConstructor.hh"
42 
43 #include "G4hMultipleScattering.hh"
44 #include "G4hIonisation.hh"
45 
49 
75 
76 // Low-energy Models
77 #include "G4LElastic.hh"
78 #include "G4LFission.hh"
79 #include "G4LCapture.hh"
80 
81 #include "G4LEPionPlusInelastic.hh"
83 #include "G4LEKaonPlusInelastic.hh"
87 #include "G4LEProtonInelastic.hh"
89 #include "G4LENeutronInelastic.hh"
91 #include "G4LELambdaInelastic.hh"
97 #include "G4LEXiZeroInelastic.hh"
98 #include "G4LEXiMinusInelastic.hh"
101 #include "G4LEDeuteronInelastic.hh"
102 #include "G4LETritonInelastic.hh"
103 #include "G4LEAlphaInelastic.hh"
106 
107 // High-energy Models
108 
109 #include "G4HEPionPlusInelastic.hh"
110 #include "G4HEPionMinusInelastic.hh"
111 #include "G4HEKaonPlusInelastic.hh"
112 #include "G4HEKaonZeroInelastic.hh"
113 #include "G4HEKaonZeroInelastic.hh"
114 #include "G4HEKaonMinusInelastic.hh"
115 #include "G4HEProtonInelastic.hh"
117 #include "G4HENeutronInelastic.hh"
119 #include "G4HELambdaInelastic.hh"
121 #include "G4HESigmaPlusInelastic.hh"
125 #include "G4HEXiZeroInelastic.hh"
126 #include "G4HEXiMinusInelastic.hh"
131 
132 // Stopping processes
135 
136 #ifdef TRIUMF_STOP_PIMINUS
138 #else
140 #endif
141 #ifdef TRIUMF_STOP_KMINUS
142 #include "G4KaonMinusAbsorption.hh"
143 #else
145 #endif
146 
147 // quark gluon string model with chips afterburner.
148 #include "G4TheoFSGenerator.hh"
149 #include "G4ExcitationHandler.hh"
150 #include "G4PreCompoundModel.hh"
152 #include "G4QGSModel.hh"
153 #include "G4QGSParticipants.hh"
154 #include "G4QGSMFragmentation.hh"
155 #include "G4ExcitedStringDecay.hh"
156 
157 
159 {
160  public:
161  GammaRayTelHadronPhysics(const G4String& name ="hadron");
162  virtual ~GammaRayTelHadronPhysics();
163 
164  public:
165  // This method will be invoked in the Construct() method.
166  // each particle type will be instantiated
168 
169  // This method will be invoked in the Construct() method.
170  // each physics process will be instantiated and
171  // registered to the process manager of each particle type
172  void ConstructProcess();
173 
174  protected:
175  // Elastic Process
178 
179  // Pi +
184 
185  // Pi -
190 #ifdef TRIUMF_STOP_PIMINUS
192 #else
194 #endif
195 
196  // pi+ and pi-
197 
205 
206  // K +
212 
213  // K -
219 #ifdef TRIUMF_STOP_KMINUS
221 #else
223 #endif
224 
225  // K0L
229 
230  // K0S
234 
235  // Proton
241 
242  // anti-proton
249 
250  // neutron
258 
259 
260  // anti-neutron
265 
266  // Lambda
270 
271  // AntiLambda
275 
276  // SigmaMinus
282 
283  // AntiSigmaMinus
289 
290  // SigmaPlus
296 
297  // AntiSigmaPlus
303 
304  // XiZero
308 
309  // AntiXiZero
313 
314  // XiMinus
320 
321  // AntiXiMinus
327 
328  // OmegaMinus
334 
335  // AntiOmegaMinus
341 };
342 
343 
344 #endif
345