Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // 26 /// \file hadronic/Hadr02/include/HadronPhysic 26 /// \file hadronic/Hadr02/include/HadronPhysicsHIJING.hh 27 /// \brief Definition of the HadronPhysicsHIJI 27 /// \brief Definition of the HadronPhysicsHIJING class 28 // 28 // >> 29 // $Id: HadronPhysicsHIJING.hh,v 1.5 2010-06-03 10:42:44 gunter Exp $ >> 30 // GEANT4 tag $Name: not supported by cvs2svn $ 29 // 31 // 30 //-------------------------------------------- 32 //--------------------------------------------------------------------------- 31 // 33 // 32 // ClassName: << 34 // ClassName: 33 // 35 // 34 // Author: 2012 Andrea Dotti 36 // Author: 2012 Andrea Dotti 35 // created from HadronPhysicsFTFP_BERT 37 // created from HadronPhysicsFTFP_BERT 36 // Modified: 38 // Modified: 37 // 07.02.2012 A. Dotti: First version 39 // 07.02.2012 A. Dotti: First version 38 //-------------------------------------------- 40 //---------------------------------------------------------------------------- 39 // 41 // 40 #ifndef HadronPhysicsHIJING_h 42 #ifndef HadronPhysicsHIJING_h 41 #define HadronPhysicsHIJING_h 1 43 #define HadronPhysicsHIJING_h 1 42 44 43 #include "" << 45 #include "globals.hh" 44 #include "HIJINGNeutronBuilder.hh" << 46 #include "G4ios.hh" >> 47 >> 48 #include "G4VPhysicsConstructor.hh" >> 49 >> 50 #include "G4PiKBuilder.hh" 45 #include "" 51 #include "" >> 52 >> 53 #include "G4ProtonBuilder.hh" 46 #include "HIJINGProtonBuilder.hh" 54 #include "HIJINGProtonBuilder.hh" 47 55 48 #include "G4AntiBarionBuilder.hh" << 49 #include "G4HyperonBuilder.hh" << 50 #include "G4HyperonFTFPBuilder.hh" << 51 #include "G4NeutronBuilder.hh" 56 #include "G4NeutronBuilder.hh" 52 #include "G4PiKBuilder.hh" << 57 #include "HIJINGNeutronBuilder.hh" 53 #include "G4ProtonBuilder.hh" << 58 54 #include "G4VPhysicsConstructor.hh" << 59 #include "G4HyperonFTFPBuilder.hh" 55 #include "G4ios.hh" << 60 56 #include "globals.hh" << 61 #include "G4AntiBarionBuilder.hh" >> 62 #include "" 57 63 58 class HadronPhysicsHIJING : public G4VPhysicsC 64 class HadronPhysicsHIJING : public G4VPhysicsConstructor 59 { 65 { 60 public: << 66 public: 61 HadronPhysicsHIJING(G4int verbose = 1); << 67 >> 68 HadronPhysicsHIJING(G4int verbose =1); 62 virtual ~HadronPhysicsHIJING(); 69 virtual ~HadronPhysicsHIJING(); 63 70 64 public: << 71 public: 65 virtual void ConstructParticle(); 72 virtual void ConstructParticle(); 66 virtual void ConstructProcess(); 73 virtual void ConstructProcess(); 67 74 68 private: 75 private: >> 76 69 void CreateModels(); 77 void CreateModels(); 70 G4HadronicProcess* FindInelasticProcess(co 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; 71 93 72 G4NeutronBuilder* fNeutrons; << 94 G4VCrossSectionDataSet * fCHIPSInelastic; 73 HIJINGNeutronBuilder* fHIJINGNeutron; << 74 << 75 G4PiKBuilder* fPiK; << 76 HIJINGPiKBuilder* fHIJINGPiK; << 77 << 78 G4ProtonBuilder* fPro; << 79 HIJINGProtonBuilder* fHIJINGPro; << 80 << 81 G4HyperonBuilder* fHyperon; << 82 G4HyperonFTFPBuilder* fFTFPHyperon; << 83 << 84 G4AntiBarionBuilder* fAntiBaryon; << 85 HIJINGAntiBarionBuilder* fHIJINGAntiBaryon << 86 << 87 G4VCrossSectionDataSet* fCHIPSInelastic; << 88 }; 95 }; 89 96 90 #endif 97 #endif >> 98 91 99