Belle II Software  release-08-01-10
ProtonPhysics.h
1 /**************************************************************************
2  * basf2 (Belle II Analysis Software Framework) *
3  * Author: The Belle II Collaboration *
4  * *
5  * See git log for contributors and copyright holders. *
6  * This file is licensed under LGPL-3.0, see LICENSE.md. *
7  **************************************************************************/
8 
9 #ifndef PROTONPHYSICS_H
10 #define PROTONPHYSICS_H
11 
12 #include "G4VPhysicsConstructor.hh"
13 
14 class G4TheoFSGenerator;
15 class G4FTFModel;
16 class G4ExcitedStringDecay;
17 class G4LundStringFragmentation;
18 class G4GeneratorPrecompoundInterface;
19 
20 namespace Belle2 {
26  namespace Simulation {
27 
31  class ProtonPhysics: public G4VPhysicsConstructor {
32  public:
33  ProtonPhysics();
34  ~ProtonPhysics();
35 
37  virtual void ConstructProcess() override;
38 
40  virtual void ConstructParticle() override;
41 
42  private:
44  G4TheoFSGenerator* m_ftfp;
45 
47  G4FTFModel* m_stringModel;
48 
50  G4ExcitedStringDecay* m_stringDecay;
51 
53  G4LundStringFragmentation* m_fragModel;
54 
56  G4GeneratorPrecompoundInterface* m_preCompoundModel;
57 
58  };
59 
60  } // end of namespace Simulation
61 
63 } // end of namespace Belle2
64 
65 #endif // PROTONPHYSICS_H
Proton hadronic physics constructor for Belle II physics list.
Definition: ProtonPhysics.h:31
virtual void ConstructParticle() override
Build all particle types used in physics list (empty in this class)
G4GeneratorPrecompoundInterface * m_preCompoundModel
Precompound model to deexcite post-collision nucleus.
Definition: ProtonPhysics.h:56
G4TheoFSGenerator * m_ftfp
Final state generator for QCD string models.
Definition: ProtonPhysics.h:44
G4FTFModel * m_stringModel
Fritiof string model.
Definition: ProtonPhysics.h:47
G4ExcitedStringDecay * m_stringDecay
Model to decay strings into hadrons.
Definition: ProtonPhysics.h:50
virtual void ConstructProcess() override
Build processes, models, cross sections used in physics list.
G4LundStringFragmentation * m_fragModel
Lund string fragmentation model.
Definition: ProtonPhysics.h:53
Abstract base class for different kinds of events.