Geant4
11.4.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4HadronPhysicsQGSP_BERT.hh
Go to the documentation of this file.
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: G4HadronPhysicsQGSP_BERT
30
//
31
// Author: 2002 J.P. Wellisch
32
//
33
// Modified:
34
// 23.11.2005 G.Folger: migration to non static particles
35
// 08.06.2006 V.Ivanchenko: remove stopping
36
// 25.04.2007 G.Folger: Add quasielastic option, use this by default
37
// 10.12.2007 G.Folger: Add projectilediffrative option for proton/neutron, off by default
38
// 31.10.2012 A.Ribon: Use G4MiscBuilder
39
// 19.03.2013 A.Ribon: Replace LEP with FTFP
40
// 25.08.2020 V.Ivanchenko change design using G4HadProcess utility
41
// 25.10.2025 V.Ivanchenko made this class to be base for QGSP family
42
//
43
//----------------------------------------------------------------------------
44
//
45
#ifndef G4HadronPhysicsQGSP_BERT_h
46
#define G4HadronPhysicsQGSP_BERT_h 1
47
48
#include "
globals.hh
"
49
50
#include "
G4VPhysicsConstructor.hh
"
51
52
class
G4HadronPhysicsQGSP_BERT
:
public
G4VPhysicsConstructor
53
{
54
public
:
55
G4HadronPhysicsQGSP_BERT
(
G4int
verbose =1);
56
G4HadronPhysicsQGSP_BERT
(
const
G4String
& name,
G4bool
quasiElastic =
true
);
57
~G4HadronPhysicsQGSP_BERT
()
override
=
default
;
58
59
void
ConstructParticle
()
override
;
60
void
ConstructProcess
()
override
;
61
62
// copy constructor and hide assignment operator
63
G4HadronPhysicsQGSP_BERT
(
G4HadronPhysicsQGSP_BERT
&) =
delete
;
64
G4HadronPhysicsQGSP_BERT
&
operator
=
65
(
const
G4HadronPhysicsQGSP_BERT
&right) =
delete
;
66
67
protected
:
68
void
CreateModels
();
69
virtual
void
Neutron
();
70
virtual
void
Proton
();
71
virtual
void
PiK
();
72
virtual
void
Others
();
73
virtual
void
DumpBanner
();
74
75
G4double
minQGSP_proton
;
76
G4double
minQGSP_neutron
;
77
G4double
minQGSP_pik
;
78
G4double
minFTFP_proton
;
79
G4double
minFTFP_neutron
;
80
G4double
minFTFP_pik
;
81
G4double
maxFTFP_proton
;
82
G4double
maxFTFP_neutron
;
83
G4double
maxFTFP_pik
;
84
G4double
minBERT_proton
{0.0};
85
G4double
minBERT_neutron
{0.0};
86
G4double
minBERT_pik
{0.0};
87
G4double
maxBERT_proton
;
88
G4double
maxBERT_neutron
;
89
G4double
maxBERT_pik
;
90
G4double
maxBIC_proton
{0.0};
91
G4double
maxBIC_neutron
{0.0};
92
G4double
minBIC_neutron
{0.0};
93
94
G4bool
QuasiElasticFTF
{
false
};
// Use built-in quasi-elastic (not add-on)
95
G4bool
QuasiElasticQGS
{
true
};
// For QGS, it must use it
96
};
97
98
#endif
99
G4double
double G4double
Definition
G4Types.hh:83
G4bool
bool G4bool
Definition
G4Types.hh:86
G4int
int G4int
Definition
G4Types.hh:85
G4VPhysicsConstructor.hh
G4HadronPhysicsQGSP_BERT::minFTFP_proton
G4double minFTFP_proton
Definition
G4HadronPhysicsQGSP_BERT.hh:78
G4HadronPhysicsQGSP_BERT::ConstructParticle
void ConstructParticle() override
Definition
G4HadronPhysicsQGSP_BERT.cc:270
G4HadronPhysicsQGSP_BERT::minBERT_neutron
G4double minBERT_neutron
Definition
G4HadronPhysicsQGSP_BERT.hh:85
G4HadronPhysicsQGSP_BERT::Others
virtual void Others()
Definition
G4HadronPhysicsQGSP_BERT.cc:250
G4HadronPhysicsQGSP_BERT::maxFTFP_pik
G4double maxFTFP_pik
Definition
G4HadronPhysicsQGSP_BERT.hh:83
G4HadronPhysicsQGSP_BERT::maxBERT_proton
G4double maxBERT_proton
Definition
G4HadronPhysicsQGSP_BERT.hh:87
G4HadronPhysicsQGSP_BERT::CreateModels
void CreateModels()
Definition
G4HadronPhysicsQGSP_BERT.cc:114
G4HadronPhysicsQGSP_BERT::Proton
virtual void Proton()
Definition
G4HadronPhysicsQGSP_BERT.cc:164
G4HadronPhysicsQGSP_BERT::minBERT_pik
G4double minBERT_pik
Definition
G4HadronPhysicsQGSP_BERT.hh:86
G4HadronPhysicsQGSP_BERT::ConstructProcess
void ConstructProcess() override
Definition
G4HadronPhysicsQGSP_BERT.cc:285
G4HadronPhysicsQGSP_BERT::PiK
virtual void PiK()
Definition
G4HadronPhysicsQGSP_BERT.cc:203
G4HadronPhysicsQGSP_BERT::minQGSP_proton
G4double minQGSP_proton
Definition
G4HadronPhysicsQGSP_BERT.hh:75
G4HadronPhysicsQGSP_BERT::QuasiElasticFTF
G4bool QuasiElasticFTF
Definition
G4HadronPhysicsQGSP_BERT.hh:94
G4HadronPhysicsQGSP_BERT::G4HadronPhysicsQGSP_BERT
G4HadronPhysicsQGSP_BERT(G4HadronPhysicsQGSP_BERT &)=delete
G4HadronPhysicsQGSP_BERT::minFTFP_neutron
G4double minFTFP_neutron
Definition
G4HadronPhysicsQGSP_BERT.hh:79
G4HadronPhysicsQGSP_BERT::maxFTFP_proton
G4double maxFTFP_proton
Definition
G4HadronPhysicsQGSP_BERT.hh:81
G4HadronPhysicsQGSP_BERT::maxFTFP_neutron
G4double maxFTFP_neutron
Definition
G4HadronPhysicsQGSP_BERT.hh:82
G4HadronPhysicsQGSP_BERT::~G4HadronPhysicsQGSP_BERT
~G4HadronPhysicsQGSP_BERT() override=default
G4HadronPhysicsQGSP_BERT::maxBIC_proton
G4double maxBIC_proton
Definition
G4HadronPhysicsQGSP_BERT.hh:90
G4HadronPhysicsQGSP_BERT::maxBERT_pik
G4double maxBERT_pik
Definition
G4HadronPhysicsQGSP_BERT.hh:89
G4HadronPhysicsQGSP_BERT::Neutron
virtual void Neutron()
Definition
G4HadronPhysicsQGSP_BERT.cc:122
G4HadronPhysicsQGSP_BERT::minFTFP_pik
G4double minFTFP_pik
Definition
G4HadronPhysicsQGSP_BERT.hh:80
G4HadronPhysicsQGSP_BERT::QuasiElasticQGS
G4bool QuasiElasticQGS
Definition
G4HadronPhysicsQGSP_BERT.hh:95
G4HadronPhysicsQGSP_BERT::minQGSP_neutron
G4double minQGSP_neutron
Definition
G4HadronPhysicsQGSP_BERT.hh:76
G4HadronPhysicsQGSP_BERT::G4HadronPhysicsQGSP_BERT
G4HadronPhysicsQGSP_BERT(G4int verbose=1)
Definition
G4HadronPhysicsQGSP_BERT.cc:92
G4HadronPhysicsQGSP_BERT::minBERT_proton
G4double minBERT_proton
Definition
G4HadronPhysicsQGSP_BERT.hh:84
G4HadronPhysicsQGSP_BERT::DumpBanner
virtual void DumpBanner()
Definition
G4HadronPhysicsQGSP_BERT.cc:305
G4HadronPhysicsQGSP_BERT::minQGSP_pik
G4double minQGSP_pik
Definition
G4HadronPhysicsQGSP_BERT.hh:77
G4HadronPhysicsQGSP_BERT::minBIC_neutron
G4double minBIC_neutron
Definition
G4HadronPhysicsQGSP_BERT.hh:92
G4HadronPhysicsQGSP_BERT::maxBERT_neutron
G4double maxBERT_neutron
Definition
G4HadronPhysicsQGSP_BERT.hh:88
G4HadronPhysicsQGSP_BERT::maxBIC_neutron
G4double maxBIC_neutron
Definition
G4HadronPhysicsQGSP_BERT.hh:91
G4String
Definition
G4String.hh:62
G4VPhysicsConstructor::G4VPhysicsConstructor
G4VPhysicsConstructor(const G4String &="")
Definition
G4VPhysicsConstructor.cc:49
globals.hh
geant4-v11.4.0
source
physics_lists
constructors
hadron_inelastic
include
G4HadronPhysicsQGSP_BERT.hh
Generated by
1.16.1