Geant4 Cross Reference |
1 // 1 2 // ******************************************* 3 // * License and Disclaimer 4 // * 5 // * The Geant4 software is copyright of th 6 // * the Geant4 Collaboration. It is provided 7 // * conditions of the Geant4 Software License 8 // * LICENSE and available at http://cern.ch/ 9 // * include a list of copyright holders. 10 // * 11 // * Neither the authors of this software syst 12 // * institutes,nor the agencies providing fin 13 // * work make any representation or warran 14 // * regarding this software system or assum 15 // * use. Please see the license in the file 16 // * for the full disclaimer and the limitatio 17 // * 18 // * This code implementation is the result 19 // * technical work of the GEANT4 collaboratio 20 // * 21 // * Parts of this code which have been devel 22 // * et al under contract (31-465) to the King 23 // * Science and Technology (KACST), the Natio 24 // * Mathematics and Physics (NCMP), Saudi Ara 25 // * 26 // * By using, copying, modifying or distri 27 // * any work based on the software) you ag 28 // * use in resulting scientific publicati 29 // * acceptance of all terms of the Geant4 Sof 30 // ******************************************* 31 // 32 /// \file hadronic/Hadr02/include/G4UrQMD1_3Mo 33 /// \brief Definition of the G4UrQMD1_3Model c 34 // 35 // 36 37 #ifndef G4UrQMD1_3Model_hh 38 #define G4UrQMD1_3Model_hh 39 // %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 40 // 41 // MODULE: G4UrQMD1_3Model.hh 42 // 43 // Version: 0.B 44 // Date: 20/10/12 45 // Author: Kh. Abdel-Waged and Nuha 46 // Revised by: V.V. Uzhinskii 47 // SPONSERED BY 48 // Customer: KAUST/NCMP 49 // Contract: 31-465 50 // 51 // %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 52 // 53 // Class Description 54 // 55 // 56 // Class Description - End 57 // 58 // %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 59 ////////////////////////////////////////////// 60 61 #include "G4FragmentVector.hh" 62 #include "G4IntraNucleiCascader.hh" 63 #include "G4KineticTrackVector.hh" 64 #include "G4Nucleon.hh" 65 #include "G4Nucleus.hh" 66 #include "G4ParticleChange.hh" 67 #include "G4ReactionProduct.hh" 68 #include "G4ReactionProductVector.hh" 69 #include "G4Track.hh" 70 #include "G4VIntraNuclearTransportModel.hh" 71 72 #include <fstream> 73 #include <string> 74 75 //....oooOO0OOooo........oooOO0OOooo........oo 76 class G4UrQMD1_3Model : public G4VIntraNuclear 77 { 78 public: 79 G4UrQMD1_3Model(const G4String& name = "Ur 80 81 virtual ~G4UrQMD1_3Model(); 82 83 G4ReactionProductVector* Propagate(G4Kinet 84 G4V3DNu 85 86 virtual G4HadFinalState* ApplyYourself(con 87 88 private: 89 G4bool operator==(G4UrQMD1_3Model& right); 90 G4bool operator!=(G4UrQMD1_3Model& right); 91 92 void InitialiseDataTables(); 93 94 void WelcomeMessage() const; 95 96 G4int CurrentEvent; 97 G4int verbose; 98 99 G4HadFinalState theResult; 100 }; 101 102 #endif 103