EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
eASTIonPhysics.hh
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file eASTIonPhysics.hh
1 
2 //
3 // eASTIonPhysics.hh
4 // Ion hadronic physics constructor for eASTPhysicsList
5 //
6 // Jun.21.2018 : original implementation - Dennis H. Wright (SLAC)
7 // May.06.2021 : migration to eAST - Makoto Asai (SLAC)
8 //
10 
11 #ifndef eASTIonPhysics_h
12 #define eASTIonPhysics_h 1
13 
14 #include "G4VPhysicsConstructor.hh"
15 
16 class G4TheoFSGenerator;
17 class G4FTFModel;
18 class G4ExcitedStringDecay;
19 class G4LundStringFragmentation;
20 class G4GeneratorPrecompoundInterface;
21 class G4VComponentCrossSection;
22 class G4ComponentGGNuclNuclXsc;
23 
24 
25 class eASTIonPhysics: public G4VPhysicsConstructor
26 {
27  public:
30 
31  virtual void ConstructParticle() override;
32  virtual void ConstructProcess() override;
33  virtual void TerminateWorker() override;
34 
35  private:
36  G4TheoFSGenerator* ftfp;
37  G4FTFModel* stringModel;
38  G4ExcitedStringDecay* stringDecay;
39  G4LundStringFragmentation* fragModel;
40  G4GeneratorPrecompoundInterface* preCompoundModel;
41 
42  G4VComponentCrossSection* theGGNuclNuclXS;
43  G4ComponentGGNuclNuclXsc* ionGGXS;
44 };
45 
46 #endif