Geant4  9.6.p02
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
RE02HadronPhysics.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 //
28 //
29 // $Id$
30 // --------------------------------------------------------------
31 //
32 // 10-Oct-2003 Full Hadron Processes with Parameterization Model T. Koi
33 
34 #ifndef RE02HadronPhysics_h
35 #define RE02HadronPhysics_h 1
36 
37 #include "globals.hh"
38 #include "G4ios.hh"
39 
40 #include "G4VPhysicsConstructor.hh"
41 #include "G4hMultipleScattering.hh"
42 #include "G4hIonisation.hh"
43 
44 // Hadronic Processes
45 
49 
75 
76 // Binary Cascade Models
77 #include "G4BinaryCascade.hh"
78 
79 // Low energy models
80 #include "G4LElastic.hh"
81 #include "G4LFission.hh"
82 #include "G4LCapture.hh"
83 
84 #include "G4LEPionPlusInelastic.hh"
86 #include "G4LEKaonPlusInelastic.hh"
90 #include "G4LEProtonInelastic.hh"
92 #include "G4LENeutronInelastic.hh"
94 #include "G4LELambdaInelastic.hh"
100 #include "G4LEXiZeroInelastic.hh"
101 #include "G4LEXiMinusInelastic.hh"
104 #include "G4LEDeuteronInelastic.hh"
105 #include "G4LETritonInelastic.hh"
106 #include "G4LEAlphaInelastic.hh"
109 
110 // High-energy Models
111 
112 #include "G4HEPionPlusInelastic.hh"
113 #include "G4HEPionMinusInelastic.hh"
114 #include "G4HEKaonPlusInelastic.hh"
115 #include "G4HEKaonZeroInelastic.hh"
116 #include "G4HEKaonZeroInelastic.hh"
117 #include "G4HEKaonMinusInelastic.hh"
118 #include "G4HEProtonInelastic.hh"
120 #include "G4HENeutronInelastic.hh"
122 #include "G4HELambdaInelastic.hh"
124 #include "G4HESigmaPlusInelastic.hh"
128 #include "G4HEXiZeroInelastic.hh"
129 #include "G4HEXiMinusInelastic.hh"
134 
135 // Stopping processes
138 
139 //
254 //
256 {
257  public:
258  RE02HadronPhysics(const G4String& name="hadron");
259  virtual ~RE02HadronPhysics();
260 
261  public:
262  // This method will be invoked in the Construct() method.
263  // each particle type will be instantiated
264  virtual void ConstructParticle(){;};
265 
266  // This method will be invoked in the Construct() method.
267  // each physics process will be instantiated and
268  // registered to the process manager of each particle type
269  virtual void ConstructProcess();
270 
271  protected:
272 
273 };
274 
275 #endif
276