Belle II Software  release-08-01-10
NeutronPhysics.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 NEUTRONPHYSICS_H
10 #define NEUTRONPHYSICS_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 NeutronPhysics: public G4VPhysicsConstructor {
32  public:
34  ~NeutronPhysics();
35 
37  virtual void ConstructParticle() override;
38 
40  virtual void ConstructProcess() 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  } // end of namespace Simulation
60 
62 } // end of namespace Belle2
63 
64 #endif // NEUTRONPHYSICS_H
Neutron hadronic physics constructor for Belle II physics list.
virtual void ConstructParticle() override
Build processes, models, cross sections used in physics list.
G4GeneratorPrecompoundInterface * m_preCompoundModel
Precompound model to deexcite post-collision nucleus.
G4TheoFSGenerator * m_ftfp
Final state generator for QCD string models.
G4FTFModel * m_stringModel
Fritiof string model.
G4ExcitedStringDecay * m_stringDecay
Model to decay strings into hadrons.
virtual void ConstructProcess() override
Build all particle types used in physics list (empty in this class)
G4LundStringFragmentation * m_fragModel
Lund string fragmentation model.
Abstract base class for different kinds of events.