EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
eASTAntiBaryonPhysics.hh
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file eASTAntiBaryonPhysics.hh
1 
2 //
3 // eASTAntiBaryonPhysics.hh
4 // Anti-baryon 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 eASTAntiBaryonPhysics_h
12 #define eASTAntiBaryonPhysics_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 G4ComponentAntiNuclNuclearXS;
22 
23 class eASTAntiBaryonPhysics: public G4VPhysicsConstructor
24 {
25  public:
28 
29  virtual void ConstructParticle() override;
30  virtual void ConstructProcess() override;
31  virtual void TerminateWorker() override;
32 
33  private:
34  G4TheoFSGenerator* ftfp;
35  G4FTFModel* stringModel;
36  G4ExcitedStringDecay* stringDecay;
37  G4LundStringFragmentation* fragModel;
38  G4GeneratorPrecompoundInterface* preCompoundModel;
39 
40  G4ComponentAntiNuclNuclearXS* theAntiNucleonXS;
41 };
42 
43 #endif