EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
NeutronPhysics.hh
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file NeutronPhysics.hh
1 // $Id: $
3 // //
4 // File: NeutronPhysics.hh //
5 // Description: Neutron hadronic physics constructor for EICPhysicsList //
6 // //
7 // Author: Dennis H. Wright (SLAC) //
8 // Date: 3 July 2018 //
9 // //
11 
12 #ifndef NeutronPhysics_h
13 #define NeutronPhysics_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 
23 
24 class NeutronPhysics: public G4VPhysicsConstructor
25 {
26  public:
29 
30  virtual void ConstructParticle() override;
31  virtual void ConstructProcess() override;
32 
33  private:
34  G4TheoFSGenerator* ftfp;
35  G4FTFModel* stringModel;
36  G4ExcitedStringDecay* stringDecay;
37  G4LundStringFragmentation* fragModel;
38  G4GeneratorPrecompoundInterface* preCompoundModel;
39 
40 };
41 
42 #endif