EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
eASTGammaLeptoNuclearPhysics.hh
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file eASTGammaLeptoNuclearPhysics.hh
1 
2 //
3 // eASTGammaLeptoNuclearPhysics.hh
4 // Description: Gamma-nuclear, electro-nuclear and muon-nuclear physics
5 // constructor for eASTPhysicsList
6 //
7 // Jun.21.2018 : original implementation - Dennis H. Wright (SLAC)
8 // May.06.2021 : migration to eAST - Makoto Asai (SLAC)
9 //
11 
12 #ifndef eASTGammaLeptoNuclearPhysics_h
13 #define eASTGammaLeptoNuclearPhysics_h 1
14 
15 #include "G4VPhysicsConstructor.hh"
16 #include "G4GammaParticipants.hh"
17 #include "G4QGSModel.hh"
18 
19 class G4TheoFSGenerator;
20 class G4ExcitedStringDecay;
21 class G4QGSMFragmentation;
22 class G4GeneratorPrecompoundInterface;
23 
24 
25 class eASTGammaLeptoNuclearPhysics: public G4VPhysicsConstructor
26 {
27  public:
30 
31  virtual void ConstructProcess() override;
32  virtual void ConstructParticle() override;
33 
34  private:
35  G4TheoFSGenerator* qgsp;
36  G4QGSModel<G4GammaParticipants>* stringModel;
37  G4ExcitedStringDecay* stringDecay;
38  G4QGSMFragmentation* fragModel;
39  G4GeneratorPrecompoundInterface* preCompoundModel;
40 
41 };
42 
43 #endif