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#pragma once
10
11#include "G4VPhysicsConstructor.hh"
12
13class G4TheoFSGenerator;
14class G4FTFModel;
15class G4ExcitedStringDecay;
16class G4LundStringFragmentation;
17class G4GeneratorPrecompoundInterface;
18class G4ComponentAntiNuclNuclearXS;
19
20namespace Belle2 {
25
26 namespace Simulation {
27
31 class AntiBaryonPhysics: public G4VPhysicsConstructor {
32 public:
33 AntiBaryonPhysics();
34 ~AntiBaryonPhysics();
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
59 G4ComponentAntiNuclNuclearXS* m_theAntiNucleonXS;
60 };
61
62 } // end of namespace Simulation
63
65} // end of namespace Belle2
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.