Geant4  9.6.p02
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4UrQMD1_3Model.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 // * *
21 // * Parts of this code which have been developed by Abdel-Waged *
22 // * et al under contract (31-465) to the King Abdul-Aziz City for *
23 // * Science and Technology (KACST), the National Centre of *
24 // * Mathematics and Physics (NCMP), Saudi Arabia. *
25 // * *
26 // * By using, copying, modifying or distributing the software (or *
27 // * any work based on the software) you agree to acknowledge its *
28 // * use in resulting scientific publications, and indicate your *
29 // * acceptance of all terms of the Geant4 Software license. *
30 // ********************************************************************
31 //
34 //
35 #ifndef G4UrQMD1_3Model_hh
36 #define G4UrQMD1_3Model_hh
37 // %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
38 //
39 // MODULE: G4UrQMD1_3Model.hh
40 //
41 // Version: 0.B
42 // Date: 20/10/12
43 // Author: Kh. Abdel-Waged and Nuha Felemban
44 // Revised by: V.V. Uzhinskii
45 // SPONSERED BY
46 // Customer: KAUST/NCMP
47 // Contract: 31-465
48 //
49 // %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
50 //
51 // Class Description
52 //
53 //
54 // Class Description - End
55 //
56 // %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
58 #include "G4Nucleon.hh"
59 #include "G4Nucleus.hh"
61 #include "G4KineticTrackVector.hh"
62 #include "G4FragmentVector.hh"
63 #include "G4ParticleChange.hh"
65 #include "G4ReactionProduct.hh"
66 #include "G4IntraNucleiCascader.hh"
67 #include "G4Track.hh"
68 #include <fstream>
69 #include <string>
70 //--------------------------------
71 //AND->
72 //This should be included in the .cc to
73 //avoid multiple definition issues
74 //#include "G4UrQMD1_3Interface.hh"
75 //AND<-
76 
77 
79 
81 
82 
83 
84 public:
85 
86  G4UrQMD1_3Model(const G4String& name = "UrQMD1_3");
87 
88 
89  virtual ~G4UrQMD1_3Model ();
90 
91 // G4double GetMinEnergy( const G4Material *aMaterial,
92 // const G4Element *anElement ) const;
93 // G4double GetMaxEnergy( const G4Material *aMaterial,
94 // const G4Element *anElement ) const;
95 
96 
98  theSecondaries, G4V3DNucleus* theTarget);
99 
100 
101 
103  (const G4HadProjectile &, G4Nucleus &);
104 
105 
106 
107 
108  private:
109 
110  G4int operator==(G4UrQMD1_3Model& right) {
111  return (this == &right);
112  }
113 
114  G4int operator!=(G4UrQMD1_3Model& right) {
115  return (this != &right);
116  }
117 
118 
119  G4int verbose;
120 
121  void InitialiseDataTables();
122 
123  G4int CurrentEvent;
124 
125  private:
126 
127 
128  void WelcomeMessage () const;
129 
130  G4HadFinalState theResult;
131 
132 
133 };
134 
135 // inline G4double G4UrQMD1_3Model::GetMinEnergy( const G4Material *,
136 // const G4Element * ) const
137 // {return theMinEnergy;}
139 //
140 // inline G4double G4UrQMD1_3Model::GetMaxEnergy( const G4Material *,
141 // const G4Element * ) const
142 // {return theMaxEnergy;}
143 
144 
145 
147 //
148 #endif