ECCE @ EIC Software
Reference for
ECCE @ EIC
simulation and reconstruction software on GitHub
Home page
Related Pages
Modules
Namespaces
Classes
Files
External Links
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
G4QGSPPiKBuilder.cc
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file G4QGSPPiKBuilder.cc
1
//
2
// ********************************************************************
3
// * License and Disclaimer *
4
// * *
5
// * The Geant4 software is copyright of the Copyright Holders of *
6
// * the Geant4 Collaboration. It is provided under the terms and *
7
// * conditions of the Geant4 Software License, included in the file *
8
// * LICENSE and available at http://cern.ch/geant4/license . These *
9
// * include a list of copyright holders. *
10
// * *
11
// * Neither the authors of this software system, nor their employing *
12
// * institutes,nor the agencies providing financial support for this *
13
// * work make any representation or warranty, express or implied, *
14
// * regarding this software system or assume any liability for its *
15
// * use. Please see the license in the file LICENSE and URL above *
16
// * for the full disclaimer and the limitation of liability. *
17
// * *
18
// * This code implementation is the result of the scientific and *
19
// * technical work of the GEANT4 collaboration. *
20
// * By using, copying, modifying or distributing the software (or *
21
// * any work based on the software) you agree to acknowledge its *
22
// * use in resulting scientific publications, and indicate your *
23
// * acceptance of all terms of the Geant4 Software license. *
24
// ********************************************************************
25
//
26
//
27
//---------------------------------------------------------------------------
28
//
29
// ClassName: G4QGSPPiKBuilder
30
//
31
// Author: 2002 J.P. Wellisch
32
//
33
// Modified:
34
// 17.11.2010 G.Folger, use G4CrossSectionPairGG for relativistic rise of cross
35
// section at high energies.
36
// 30.03.2009 V.Ivanchenko create cross section by new
37
//
38
//----------------------------------------------------------------------------
39
//
40
#include "
G4QGSPPiKBuilder.hh
"
41
#include "
G4SystemOfUnits.hh
"
42
#include "
G4ParticleDefinition.hh
"
43
#include "
G4ParticleTable.hh
"
44
#include "
G4ProcessManager.hh
"
45
#include "
G4BGGPionInelasticXS.hh
"
46
#include "
G4HadronicParameters.hh
"
47
48
49
G4QGSPPiKBuilder::
50
G4QGSPPiKBuilder
(
G4bool
quasiElastic)
51
{
52
theMin
=
G4HadronicParameters::Instance
()->
GetMinEnergyTransitionQGS_FTF
();
53
theModel
=
new
G4TheoFSGenerator
(
"QGSP"
);
54
55
theStringModel
=
new
G4QGSModel< G4QGSParticipants >
;
56
theStringDecay
=
new
G4ExcitedStringDecay
(
theQGSM
=
new
G4QGSMFragmentation
);
57
theStringModel
->
SetFragmentationModel
(
theStringDecay
);
58
59
theCascade
=
new
G4GeneratorPrecompoundInterface
();
60
61
theModel
->
SetHighEnergyGenerator
(
theStringModel
);
62
if
(quasiElastic)
63
{
64
theQuasiElastic
=
new
G4QuasiElasticChannel
;
65
theModel
->
SetQuasiElasticChannel
(
theQuasiElastic
);
66
}
else
67
{
theQuasiElastic
=0;}
68
69
theModel
->
SetTransport
(
theCascade
);
70
}
71
72
G4QGSPPiKBuilder::
73
~G4QGSPPiKBuilder
()
74
{
75
if
(
theQuasiElastic
)
delete
theQuasiElastic
;
76
delete
theStringDecay
;
77
delete
theStringModel
;
78
delete
theQGSM
;
79
}
80
81
void
G4QGSPPiKBuilder::
82
Build
(
G4PionPlusInelasticProcess
* aP)
83
{
84
theModel
->
SetMinEnergy
(
theMin
);
85
theModel
->
SetMaxEnergy
(
G4HadronicParameters::Instance
()->GetMaxEnergy() );
86
aP->
AddDataSet
(
new
G4BGGPionInelasticXS
(
G4PionPlus::Definition
() ) );
87
aP->
RegisterMe
(
theModel
);
88
}
89
90
void
G4QGSPPiKBuilder::
91
Build
(
G4PionMinusInelasticProcess
* aP)
92
{
93
theModel
->
SetMinEnergy
(
theMin
);
94
theModel
->
SetMaxEnergy
(
G4HadronicParameters::Instance
()->GetMaxEnergy() );
95
aP->
AddDataSet
(
new
G4BGGPionInelasticXS
(
G4PionMinus::Definition
() ) );
96
aP->
RegisterMe
(
theModel
);
97
}
98
99
void
G4QGSPPiKBuilder::
100
Build
(
G4KaonPlusInelasticProcess
* aP)
101
{
102
theModel
->
SetMinEnergy
(
theMin
);
103
theModel
->
SetMaxEnergy
(
G4HadronicParameters::Instance
()->GetMaxEnergy() );
104
aP->
RegisterMe
(
theModel
);
105
}
106
107
void
G4QGSPPiKBuilder::
108
Build
(
G4KaonMinusInelasticProcess
* aP)
109
{
110
theModel
->
SetMinEnergy
(
theMin
);
111
theModel
->
SetMaxEnergy
(
G4HadronicParameters::Instance
()->GetMaxEnergy() );
112
aP->
RegisterMe
(
theModel
);
113
}
114
115
void
G4QGSPPiKBuilder::
116
Build
(
G4KaonZeroLInelasticProcess
* aP)
117
{
118
theModel
->
SetMinEnergy
(
theMin
);
119
theModel
->
SetMaxEnergy
(
G4HadronicParameters::Instance
()->GetMaxEnergy() );
120
aP->
RegisterMe
(
theModel
);
121
}
122
123
void
G4QGSPPiKBuilder::
124
Build
(
G4KaonZeroSInelasticProcess
* aP)
125
{
126
theModel
->
SetMinEnergy
(
theMin
);
127
theModel
->
SetMaxEnergy
(
G4HadronicParameters::Instance
()->GetMaxEnergy() );
128
aP->
RegisterMe
(
theModel
);
129
}
130
geant4
tree
geant4-10.6-release
source
physics_lists
builders
src
G4QGSPPiKBuilder.cc
Built by
Jin Huang
. updated:
Wed Jun 29 2022 17:25:26
using
1.8.2 with
ECCE GitHub integration