Belle II Software development
HyperonPhysics.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 HYPERONPHYSICS_H
10#define HYPERONPHYSICS_H
11
12#include "G4VPhysicsConstructor.hh"
13
14class G4TheoFSGenerator;
15class G4FTFModel;
16class G4ExcitedStringDecay;
17class G4LundStringFragmentation;
18class G4GeneratorPrecompoundInterface;
19
20namespace Belle2 {
26 namespace Simulation {
27
31 class HyperonPhysics: public G4VPhysicsConstructor {
32 public:
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
60 } // end of namespace Simulation
61
63} // end of namespace Belle2
64
65#endif // HYPERONPHYSICS_H
Hyperon 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.