Belle II Software development
GammaLeptoNuclearPhysics.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 G4ExcitedStringDecay;
15class G4QGSMFragmentation;
16class G4GeneratorPrecompoundInterface;
17class G4GammaParticipants;
18template<class T> class G4QGSModel;
19
20namespace Belle2 {
25
26 namespace Simulation {
27
32 class GammaLeptoNuclearPhysics: public G4VPhysicsConstructor {
33 public:
35 GammaLeptoNuclearPhysics(const G4int verbosityLevel = 0);
38
40 virtual void ConstructProcess() override;
41
43 virtual void ConstructParticle() override;
44
45 private:
47 G4TheoFSGenerator* m_qgsp;
48
51
53 G4ExcitedStringDecay* m_stringDecay;
54
56 G4QGSMFragmentation* m_fragModel;
57
59 G4GeneratorPrecompoundInterface* m_preCompoundModel;
60
63
64 };
65
66 } // end of namespace Simulation
67
69} // end of namespace Belle2
G4TheoFSGenerator * m_qgsp
Final state generator for QCD string models.
G4QGSModel< G4GammaParticipants > * m_stringModel
Quark Gluon String model.
virtual void ConstructParticle() override
Build all particle types used in physics list (empty in this class)
G4QGSMFragmentation * m_fragModel
Quark Gluon String fragmentation model.
G4bool m_useGammaNuclearXS
Switch between GammaNuclearXS and PhotoNuclearXS.
G4GeneratorPrecompoundInterface * m_preCompoundModel
Precompound model to deexcite post-collision nucleus.
G4ExcitedStringDecay * m_stringDecay
Model to decay strings into hadrons.
GammaLeptoNuclearPhysics(const G4int verbosityLevel=0)
Constructor.
virtual void ConstructProcess() override
Build processes, models, cross sections used in physics list.
Abstract base class for different kinds of events.