Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4ComponentBarNucleonNucleusXsc Class Reference

#include <G4ComponentBarNucleonNucleusXsc.hh>

+ Inheritance diagram for G4ComponentBarNucleonNucleusXsc:

Public Member Functions

 G4ComponentBarNucleonNucleusXsc ()
 
 ~G4ComponentBarNucleonNucleusXsc () override=default
 
G4double GetTotalIsotopeCrossSection (const G4ParticleDefinition *aParticle, G4double kinEnergy, G4int Z, G4int) final
 
G4double GetTotalElementCrossSection (const G4ParticleDefinition *aParticle, G4double kinEnergy, G4int Z, G4double) final
 
G4double GetInelasticIsotopeCrossSection (const G4ParticleDefinition *aParticle, G4double kinEnergy, G4int Z, G4int) final
 
G4double GetInelasticElementCrossSection (const G4ParticleDefinition *aParticle, G4double kinEnergy, G4int Z, G4double) final
 
G4double GetElasticElementCrossSection (const G4ParticleDefinition *aParticle, G4double kinEnergy, G4int Z, G4double) final
 
G4double GetElasticIsotopeCrossSection (const G4ParticleDefinition *aParticle, G4double kinEnergy, G4int Z, G4int) final
 
void ComputeCrossSections (const G4ParticleDefinition *aParticle, G4double kinEnergy, G4int Z)
 
void Description (std::ostream &) const final
 
G4double GetElementCrossSection (const G4DynamicParticle *aParticle, G4int Z)
 
G4double GetElasticCrossSection (const G4DynamicParticle *aParticle, G4int Z)
 
G4double GetTotalXsc ()
 
G4double GetElasticXsc ()
 
G4double GetInelasticXsc ()
 
G4ComponentBarNucleonNucleusXscoperator= (const G4ComponentBarNucleonNucleusXsc &right)=delete
 
 G4ComponentBarNucleonNucleusXsc (const G4ComponentBarNucleonNucleusXsc &)=delete
 
- Public Member Functions inherited from G4VComponentCrossSection
 G4VComponentCrossSection (const G4String &nam="")
 
virtual ~G4VComponentCrossSection ()
 
G4double GetTotalElementCrossSection (const G4ParticleDefinition *, G4double kinEnergy, const G4Element *)
 
G4double GetInelasticElementCrossSection (const G4ParticleDefinition *, G4double kinEnergy, const G4Element *)
 
G4double GetElasticElementCrossSection (const G4ParticleDefinition *, G4double kinEnergy, const G4Element *)
 
virtual G4double ComputeQuasiElasticRatio (const G4ParticleDefinition *, G4double kinEnergy, G4int, G4int)
 
virtual void BuildPhysicsTable (const G4ParticleDefinition &)
 
virtual void DumpPhysicsTable (const G4ParticleDefinition &)
 
void SetVerboseLevel (G4int value)
 
G4int GetVerboseLevel () const
 
G4double GetMinKinEnergy () const
 
void SetMinKinEnergy (G4double value)
 
G4double GetMaxKinEnergy () const
 
void SetMaxKinEnergy (G4double value)
 
const G4StringGetName () const
 

Detailed Description

Definition at line 48 of file G4ComponentBarNucleonNucleusXsc.hh.

Constructor & Destructor Documentation

◆ G4ComponentBarNucleonNucleusXsc() [1/2]

G4ComponentBarNucleonNucleusXsc::G4ComponentBarNucleonNucleusXsc ( )

Definition at line 52 of file G4ComponentBarNucleonNucleusXsc.cc.

53 : G4VComponentCrossSection("BarashenkovNucleonNucleusXsc")
54{
55 theNeutron = G4Neutron::Neutron();
56 theProton = G4Proton::Proton();
57 if (nullptr == thePData) {
58 LoadData();
59 }
60}
static G4Neutron * Neutron()
Definition G4Neutron.cc:101
static G4Proton * Proton()
Definition G4Proton.cc:90
G4VComponentCrossSection(const G4String &nam="")

Referenced by G4ComponentBarNucleonNucleusXsc(), and operator=().

◆ ~G4ComponentBarNucleonNucleusXsc()

G4ComponentBarNucleonNucleusXsc::~G4ComponentBarNucleonNucleusXsc ( )
overridedefault

◆ G4ComponentBarNucleonNucleusXsc() [2/2]

G4ComponentBarNucleonNucleusXsc::G4ComponentBarNucleonNucleusXsc ( const G4ComponentBarNucleonNucleusXsc & )
delete

Member Function Documentation

◆ ComputeCrossSections()

void G4ComponentBarNucleonNucleusXsc::ComputeCrossSections ( const G4ParticleDefinition * aParticle,
G4double kinEnergy,
G4int Z )

Definition at line 124 of file G4ComponentBarNucleonNucleusXsc.cc.

126{
127 G4int Z = std::min(ZZ, 92);
128 G4int it = 0;
129 for(; it<NZ; ++it) { if(Z <= theZ[it]) { break; } }
130 if( it >= NZ ) { it = NZ-1; }
131
132 std::vector<G4PiData*>* theData = (aParticle == theNeutron) ? theNData : thePData;
133
134 if( theZ[it] == Z ) {
135 fInelasticXsc = (*theData)[it]->ReactionXSection(kineticEnergy);
136 fTotalXsc = (*theData)[it]->TotalXSection(kineticEnergy);
137 } else {
138 if(0 == it) { it = 1; }
139 G4double x1 = (*theData)[it-1]->ReactionXSection(kineticEnergy);
140 G4double xt1 = (*theData)[it-1]->TotalXSection(kineticEnergy);
141 G4double x2 = (*theData)[it]->ReactionXSection(kineticEnergy);
142 G4double xt2 = (*theData)[it]->TotalXSection(kineticEnergy);
143 G4int Z1 = theZ[it-1];
144 G4int Z2 = theZ[it];
145
146 fInelasticXsc = Interpolate(Z1, Z2, Z, x1, x2);
147 fTotalXsc = Interpolate(Z1, Z2, Z, xt1, xt2);
148 }
149
150 fElasticXsc = std::max(fTotalXsc - fInelasticXsc, 0.0);
151}
double G4double
Definition G4Types.hh:83
int G4int
Definition G4Types.hh:85

Referenced by GetElasticCrossSection(), GetElasticElementCrossSection(), GetElasticIsotopeCrossSection(), GetElementCrossSection(), GetInelasticElementCrossSection(), GetInelasticIsotopeCrossSection(), GetTotalElementCrossSection(), and GetTotalIsotopeCrossSection().

◆ Description()

void G4ComponentBarNucleonNucleusXsc::Description ( std::ostream & outFile) const
finalvirtual

Reimplemented from G4VComponentCrossSection.

Definition at line 171 of file G4ComponentBarNucleonNucleusXsc.cc.

172{
173 outFile << "G4ComponentBarNucleonNucleusXsc is a variant of the Barashenkov\n"
174 << "cross section parameterization to be used of protons and\n"
175 << "neutrons on targets heavier than hydrogen. It is intended for\n"
176 << "use as a cross section component and is currently used by\n"
177 << "G4BGGNucleonInelasticXS. It is valid for incident energies up\n"
178 << "to 1 TeV.\n";
179}

◆ GetElasticCrossSection()

G4double G4ComponentBarNucleonNucleusXsc::GetElasticCrossSection ( const G4DynamicParticle * aParticle,
G4int Z )
inline

Definition at line 127 of file G4ComponentBarNucleonNucleusXsc.hh.

129{
130 ComputeCrossSections(dp->GetDefinition(), dp->GetKineticEnergy(), Z);
131 return fElasticXsc;
132}
void ComputeCrossSections(const G4ParticleDefinition *aParticle, G4double kinEnergy, G4int Z)

◆ GetElasticElementCrossSection()

G4double G4ComponentBarNucleonNucleusXsc::GetElasticElementCrossSection ( const G4ParticleDefinition * aParticle,
G4double kinEnergy,
G4int Z,
G4double  )
finalvirtual

Implements G4VComponentCrossSection.

Definition at line 104 of file G4ComponentBarNucleonNucleusXsc.cc.

107{
108 ComputeCrossSections(aParticle, kinEnergy, Z);
109 return fElasticXsc;
110}

◆ GetElasticIsotopeCrossSection()

G4double G4ComponentBarNucleonNucleusXsc::GetElasticIsotopeCrossSection ( const G4ParticleDefinition * aParticle,
G4double kinEnergy,
G4int Z,
G4int  )
finalvirtual

Implements G4VComponentCrossSection.

Definition at line 114 of file G4ComponentBarNucleonNucleusXsc.cc.

117{
118 ComputeCrossSections(aParticle, kinEnergy, Z);
119 return fElasticXsc;
120}

◆ GetElasticXsc()

G4double G4ComponentBarNucleonNucleusXsc::GetElasticXsc ( )
inline

Definition at line 89 of file G4ComponentBarNucleonNucleusXsc.hh.

89{ return fElasticXsc; };

◆ GetElementCrossSection()

G4double G4ComponentBarNucleonNucleusXsc::GetElementCrossSection ( const G4DynamicParticle * aParticle,
G4int Z )
inline

Definition at line 119 of file G4ComponentBarNucleonNucleusXsc.hh.

121{
122 ComputeCrossSections(dp->GetDefinition(), dp->GetKineticEnergy(), Z);
123 return fInelasticXsc;
124}

◆ GetInelasticElementCrossSection()

G4double G4ComponentBarNucleonNucleusXsc::GetInelasticElementCrossSection ( const G4ParticleDefinition * aParticle,
G4double kinEnergy,
G4int Z,
G4double  )
finalvirtual

Implements G4VComponentCrossSection.

Definition at line 94 of file G4ComponentBarNucleonNucleusXsc.cc.

97{
98 ComputeCrossSections(aParticle, kinEnergy, Z);
99 return fInelasticXsc;
100}

◆ GetInelasticIsotopeCrossSection()

G4double G4ComponentBarNucleonNucleusXsc::GetInelasticIsotopeCrossSection ( const G4ParticleDefinition * aParticle,
G4double kinEnergy,
G4int Z,
G4int  )
finalvirtual

Implements G4VComponentCrossSection.

Definition at line 84 of file G4ComponentBarNucleonNucleusXsc.cc.

87{
88 ComputeCrossSections(aParticle, kinEnergy, Z);
89 return fInelasticXsc;
90}

◆ GetInelasticXsc()

G4double G4ComponentBarNucleonNucleusXsc::GetInelasticXsc ( )
inline

Definition at line 90 of file G4ComponentBarNucleonNucleusXsc.hh.

90{ return fInelasticXsc; };

◆ GetTotalElementCrossSection()

G4double G4ComponentBarNucleonNucleusXsc::GetTotalElementCrossSection ( const G4ParticleDefinition * aParticle,
G4double kinEnergy,
G4int Z,
G4double  )
finalvirtual

Implements G4VComponentCrossSection.

Definition at line 74 of file G4ComponentBarNucleonNucleusXsc.cc.

77{
78 ComputeCrossSections(aParticle, kinEnergy, Z);
79 return fTotalXsc;
80}

◆ GetTotalIsotopeCrossSection()

G4double G4ComponentBarNucleonNucleusXsc::GetTotalIsotopeCrossSection ( const G4ParticleDefinition * aParticle,
G4double kinEnergy,
G4int Z,
G4int  )
finalvirtual

Implements G4VComponentCrossSection.

Definition at line 64 of file G4ComponentBarNucleonNucleusXsc.cc.

67{
68 ComputeCrossSections(aParticle, kinEnergy, Z);
69 return fTotalXsc;
70}

◆ GetTotalXsc()

G4double G4ComponentBarNucleonNucleusXsc::GetTotalXsc ( )
inline

Definition at line 88 of file G4ComponentBarNucleonNucleusXsc.hh.

88{ return fTotalXsc; };

◆ operator=()

G4ComponentBarNucleonNucleusXsc & G4ComponentBarNucleonNucleusXsc::operator= ( const G4ComponentBarNucleonNucleusXsc & right)
delete

The documentation for this class was generated from the following files: