EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
IonPhysics.hh
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file IonPhysics.hh
1 // $Id: $
3 // //
4 // File: IonPhysics.hh //
5 // Description: Ion hadronic physics constructor for EICPhysicsList //
6 // //
7 // Author: Dennis H. Wright (SLAC) //
8 // Date: 6 July 2018 //
9 // //
11 
12 #ifndef IonPhysics_h
13 #define IonPhysics_h 1
14 
15 #include <Geant4/G4VPhysicsConstructor.hh>
16 
17 class G4TheoFSGenerator;
18 class G4FTFModel;
19 class G4ExcitedStringDecay;
20 class G4LundStringFragmentation;
21 class G4GeneratorPrecompoundInterface;
22 class G4VComponentCrossSection;
23 class G4ComponentGGNuclNuclXsc;
24 
25 
26 class IonPhysics: public G4VPhysicsConstructor
27 {
28  public:
29  IonPhysics();
30  ~IonPhysics();
31 
32  virtual void ConstructParticle() override;
33  virtual void ConstructProcess() override;
34 #if G4VERSION_NUMBER >= 1004
35  virtual void TerminateWorker() override {}
36 #endif
37 
38  private:
39  G4TheoFSGenerator* ftfp;
40  G4FTFModel* stringModel;
41  G4ExcitedStringDecay* stringDecay;
42  G4LundStringFragmentation* fragModel;
43  G4GeneratorPrecompoundInterface* preCompoundModel;
44 
45  G4VComponentCrossSection* theGGNuclNuclXS;
46  G4ComponentGGNuclNuclXsc* ionGGXS;
47 };
48 
49 #endif