Belle II Software development
PionPhysics.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 PIONPHYSICS_H
10#define PIONPHYSICS_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 PionPhysics: 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 // PIONPHYSICS_H
Pion hadronic physics constructor for Belle II physics list.
Definition: PionPhysics.h:31
virtual void ConstructParticle() override
Build processes, models, cross sections used in physics list.
Definition: PionPhysics.cc:48
G4GeneratorPrecompoundInterface * m_preCompoundModel
Precompound model to deexcite post-collision nucleus.
Definition: PionPhysics.h:56
G4TheoFSGenerator * m_ftfp
Final state generator for QCD string models.
Definition: PionPhysics.h:44
G4FTFModel * m_stringModel
Fritiof string model.
Definition: PionPhysics.h:47
G4ExcitedStringDecay * m_stringDecay
Model to decay strings into hadrons.
Definition: PionPhysics.h:50
virtual void ConstructProcess() override
Build all particle types used in physics list (empty in this class)
Definition: PionPhysics.cc:52
G4LundStringFragmentation * m_fragModel
Lund string fragmentation model.
Definition: PionPhysics.h:53
Abstract base class for different kinds of events.