Geant4  v4-10.4-release
 모두 클래스 네임스페이스들 파일들 함수 변수 타입정의 열거형 타입 열거형 멤버 Friends 매크로 그룹들 페이지들
G4HadronPhysicsINCLXX.hh
이 파일의 문서화 페이지로 가기
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 // $Id: G4HadronPhysicsINCLXX.hh 66892 2013-01-17 10:57:59Z gunter $
27 //
28 //---------------------------------------------------------------------------
29 //
30 // ClassName: G4HadronPhysicsINCLXX
31 //
32 // Author: 2011 P. Kaitaniemi
33 //
34 // Modified:
35 // 19.07.2017 A. Dotti: Refactor code, following FTFP_BERT
36 // 22.05.2014 D. Mancusi: Extend INCL++ to 20 GeV
37 // 19.03.2013 A.Ribon: Replace LEP with FTFP and BERT
38 // 01.03.2013 D. Mancusi: Rename to G4HadronPhysicsINCLXX and introduce
39 // parameters for FTFP and NeutronHP
40 // 31.10.2012 A.Ribon: Use G4MiscBuilder
41 // 27.11.2011 P.Kaitaniemi: Created using QGSP_INCL_ABLA as a template
42 //
43 //----------------------------------------------------------------------------
44 //
45 #ifndef G4HadronPhysicsINCLXX_h
46 #define G4HadronPhysicsINCLXX_h 1
47 
48 #include "globals.hh"
49 #include "G4ios.hh"
50 
51 #include "G4VPhysicsConstructor.hh"
52 
53 #include "G4Cache.hh"
66 
67 
69 {
70  public:
71  G4HadronPhysicsINCLXX(G4int verbose =1);
72  G4HadronPhysicsINCLXX(const G4String& name, const G4bool quasiElastic=true, const G4bool neutronHP=false, const G4bool ftfp=false);
73  virtual ~G4HadronPhysicsINCLXX();
74 
75  public:
76  virtual void ConstructParticle() override;
77  virtual void ConstructProcess() override;
78  virtual void TerminateWorker() override;
79 
81 
82  protected:
83  virtual void CreateModels();
84  virtual void Neutron();
85  virtual void Proton();
86  virtual void Pion();
87  virtual void Kaon();
88  virtual void Others();
89  //This contains extra configurataion specific to this PL
90  virtual void ExtraConfiguration();
91 
95  //Thread-private data write them here to delete them
98 };
99 
100 #endif
101 
const XML_Char * name
Definition: expat.h:151
virtual void ConstructProcess() override
virtual void TerminateWorker() override
void SetQuasiElastic(G4bool value)
G4VectorCache< G4VCrossSectionDataSet * > xs_ds
bool G4bool
Definition: G4Types.hh:79
const XML_Char int const XML_Char * value
Definition: expat.h:331
G4Cache< G4ComponentGGHadronNucleusXsc * > xs_k
int G4int
Definition: G4Types.hh:78
virtual void ConstructParticle() override
G4HadronPhysicsINCLXX(G4int verbose=1)