Belle II Software development
AntiBaryonPhysics.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 ANTIBARYONPHYSICS_H
10#define ANTIBARYONPHYSICS_H
11
12#include "G4VPhysicsConstructor.hh"
13
14class G4TheoFSGenerator;
15class G4FTFModel;
16class G4ExcitedStringDecay;
17class G4LundStringFragmentation;
18class G4GeneratorPrecompoundInterface;
19class G4ComponentAntiNuclNuclearXS;
20
21namespace Belle2 {
27 namespace Simulation {
28
32 class AntiBaryonPhysics: public G4VPhysicsConstructor {
33 public:
36
38 virtual void ConstructParticle() override;
39
41 virtual void ConstructProcess() override;
42
43 private:
45 G4TheoFSGenerator* m_ftfp;
46
48 G4FTFModel* m_stringModel;
49
51 G4ExcitedStringDecay* m_stringDecay;
52
54 G4LundStringFragmentation* m_fragModel;
55
57 G4GeneratorPrecompoundInterface* m_preCompoundModel;
58
60 G4ComponentAntiNuclNuclearXS* m_theAntiNucleonXS;
61 };
62
63 } // end of namespace Simulation
64
66} // end of namespace Belle2
67
68#endif // ANTIBARYONPHYSICS_H
Anti-baryon 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.
G4ComponentAntiNuclNuclearXS * m_theAntiNucleonXS
Cross section set for anti-nucleon nucleus inelastic collisions.
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.