Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
HadronPhysicsHIJING.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 /// \file hadronic/Hadr02/include/HadronPhysicsHIJING.hh
27 /// \brief Definition of the HadronPhysicsHIJING class
28 //
29 // $Id: HadronPhysicsHIJING.hh,v 1.5 2010-06-03 10:42:44 gunter Exp $
30 // GEANT4 tag $Name: not supported by cvs2svn $
31 //
32 //---------------------------------------------------------------------------
33 //
34 // ClassName:
35 //
36 // Author: 2012 Andrea Dotti
37 // created from HadronPhysicsFTFP_BERT
38 // Modified:
39 // 07.02.2012 A. Dotti: First version
40 //----------------------------------------------------------------------------
41 //
42 #ifndef HadronPhysicsHIJING_h
43 #define HadronPhysicsHIJING_h 1
44 
45 #include "globals.hh"
46 #include "G4ios.hh"
47 
48 #include "G4VPhysicsConstructor.hh"
49 
50 #include "G4PiKBuilder.hh"
51 #include "HIJINGPiKBuilder.hh"
52 
53 #include "G4ProtonBuilder.hh"
54 #include "HIJINGProtonBuilder.hh"
55 
56 #include "G4NeutronBuilder.hh"
57 #include "HIJINGNeutronBuilder.hh"
58 
59 #include "G4HyperonFTFPBuilder.hh"
60 
61 #include "G4AntiBarionBuilder.hh"
62 #include "HIJINGAntiBarionBuilder.hh"
63 
65 {
66  public:
67 
68  HadronPhysicsHIJING(G4int verbose =1);
69  virtual ~HadronPhysicsHIJING();
70 
71  public:
72  virtual void ConstructParticle();
73  virtual void ConstructProcess();
74 
75  private:
76 
77  void CreateModels();
78  G4HadronicProcess* FindInelasticProcess(const G4ParticleDefinition*);
79 
80  G4NeutronBuilder * fNeutrons;
81  HIJINGNeutronBuilder * fHIJINGNeutron;
82 
83  G4PiKBuilder * fPiK;
84  HIJINGPiKBuilder * fHIJINGPiK;
85 
86  G4ProtonBuilder * fPro;
87  HIJINGProtonBuilder * fHIJINGPro;
88 
89  G4HyperonFTFPBuilder * fHyperon;
90 
91  G4AntiBarionBuilder * fAntiBaryon;
92  HIJINGAntiBarionBuilder * fHIJINGAntiBaryon;
93 
94  G4VCrossSectionDataSet * fCHIPSInelastic;
95 };
96 
97 #endif
98 
virtual ~HadronPhysicsHIJING()
virtual void ConstructProcess()
int G4int
Definition: G4Types.hh:78
Definition of the HIJINGNeutronBuilder class.
Definition of the HIJINGProtonBuilder class.
HadronPhysicsHIJING(G4int verbose=1)
virtual void ConstructParticle()