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

#include <G4BGGPionElasticXS.hh>

+ Inheritance diagram for G4BGGPionElasticXS:

Public Member Functions

 G4BGGPionElasticXS (const G4ParticleDefinition *)
 
 ~G4BGGPionElasticXS () final
 
G4bool IsElementApplicable (const G4DynamicParticle *, G4int Z, const G4Material *) final
 
G4bool IsIsoApplicable (const G4DynamicParticle *, G4int Z, G4int A, const G4Element *elm, const G4Material *mat) final
 
G4double GetElementCrossSection (const G4DynamicParticle *, G4int Z, const G4Material *mat) final
 
G4double GetIsoCrossSection (const G4DynamicParticle *, G4int Z, G4int A, const G4Isotope *iso=nullptr, const G4Element *elm=nullptr, const G4Material *mat=nullptr) final
 
void BuildPhysicsTable (const G4ParticleDefinition &) final
 
void CrossSectionDescription (std::ostream &) const final
 
G4BGGPionElasticXSoperator= (const G4BGGPionElasticXS &right)=delete
 
 G4BGGPionElasticXS (const G4BGGPionElasticXS &)=delete
 
- Public Member Functions inherited from G4VCrossSectionDataSet
 G4VCrossSectionDataSet (const G4String &nam="")
 
virtual ~G4VCrossSectionDataSet ()
 
G4double GetCrossSection (const G4DynamicParticle *, const G4Element *, const G4Material *mat=nullptr)
 
G4double ComputeCrossSection (const G4DynamicParticle *, const G4Element *, const G4Material *mat=nullptr)
 
virtual G4double ComputeCrossSectionPerElement (G4double kinEnergy, G4double loge, const G4ParticleDefinition *, const G4Element *, const G4Material *mat=nullptr)
 
virtual G4double ComputeIsoCrossSection (G4double kinEnergy, G4double loge, const G4ParticleDefinition *, G4int Z, G4int A, const G4Isotope *iso=nullptr, const G4Element *elm=nullptr, const G4Material *mat=nullptr)
 
virtual const G4IsotopeSelectIsotope (const G4Element *, G4double kinEnergy, G4double logE)
 
virtual void DumpPhysicsTable (const G4ParticleDefinition &)
 
virtual void SetVerboseLevel (G4int value)
 
G4double GetMinKinEnergy () const
 
void SetMinKinEnergy (G4double value)
 
G4double GetMaxKinEnergy () const
 
void SetMaxKinEnergy (G4double value)
 
bool ForAllAtomsAndEnergies () const
 
void SetForAllAtomsAndEnergies (G4bool val)
 
const G4StringGetName () const
 
void SetName (const G4String &nam)
 
G4VCrossSectionDataSetoperator= (const G4VCrossSectionDataSet &right)=delete
 
 G4VCrossSectionDataSet (const G4VCrossSectionDataSet &)=delete
 

Additional Inherited Members

- Protected Attributes inherited from G4VCrossSectionDataSet
G4int verboseLevel {0}
 
G4String name
 

Detailed Description

Definition at line 63 of file G4BGGPionElasticXS.hh.

Constructor & Destructor Documentation

◆ G4BGGPionElasticXS() [1/2]

G4BGGPionElasticXS::G4BGGPionElasticXS ( const G4ParticleDefinition * p)
explicit

Definition at line 64 of file G4BGGPionElasticXS.cc.

65 : G4VCrossSectionDataSet("BarashenkovGlauberGribov")
66{
67 verboseLevel = 0;
68 fGlauberEnergy = 91.*CLHEP::GeV;
69 fLowEnergy = 20.*CLHEP::MeV;
70 fLowestEnergy = 1.*CLHEP::MeV;
71 SetMinKinEnergy(0.0);
73
74 fPion = new G4UPiNuclearCrossSection();
75 fGlauber = new G4ComponentGGHadronNucleusXsc();
76 fHadron = new G4HadronNucleonXsc();
77
78 fG4pow = G4Pow::GetInstance();
79
80 theProton = G4Proton::Proton();
81 thePiPlus = G4PionPlus::PionPlus();
82 isPiplus = (p == thePiPlus);
84
85 if (0 == theA[0]) { Initialise(); }
86}
static G4HadronicParameters * Instance()
static G4PionPlus * PionPlus()
Definition G4PionPlus.cc:93
static G4Pow * GetInstance()
Definition G4Pow.cc:41
static G4Proton * Proton()
Definition G4Proton.cc:90
G4VCrossSectionDataSet(const G4String &nam="")
void SetMaxKinEnergy(G4double value)
void SetMinKinEnergy(G4double value)
void SetForAllAtomsAndEnergies(G4bool val)

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

◆ ~G4BGGPionElasticXS()

G4BGGPionElasticXS::~G4BGGPionElasticXS ( )
final

Definition at line 90 of file G4BGGPionElasticXS.cc.

91{
92 delete fHadron;
93}

◆ G4BGGPionElasticXS() [2/2]

G4BGGPionElasticXS::G4BGGPionElasticXS ( const G4BGGPionElasticXS & )
delete

Member Function Documentation

◆ BuildPhysicsTable()

void G4BGGPionElasticXS::BuildPhysicsTable ( const G4ParticleDefinition & p)
finalvirtual

Reimplemented from G4VCrossSectionDataSet.

Definition at line 178 of file G4BGGPionElasticXS.cc.

179{
180 if(verboseLevel > 1) {
181 G4cout << "G4BGGPionElasticXS::BuildPhysicsTable for "
182 << p.GetParticleName() << G4endl;
183 }
184 if(&p == G4PionPlus::PionPlus() || &p == G4PionMinus::PionMinus()) {
185 isPiplus = (&p == G4PionPlus::PionPlus());
186 } else {
188 ed << "This BGG cross section is applicable only to pions and not to "
189 << p.GetParticleName() << G4endl;
190 G4Exception("G4BGGPionElasticXS::BuildPhysicsTable", "had001",
191 FatalException, ed);
192 }
193}
@ FatalException
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout
const G4String & GetParticleName() const
static G4PionMinus * PionMinus()

◆ CrossSectionDescription()

void G4BGGPionElasticXS::CrossSectionDescription ( std::ostream & outFile) const
finalvirtual

Reimplemented from G4VCrossSectionDataSet.

Definition at line 269 of file G4BGGPionElasticXS.cc.

270{
271 outFile << "The Barashenkov-Glauber-Gribov cross section handles elastic\n"
272 << "scattering of pions from nuclei at all energies. The\n"
273 << "Barashenkov parameterization is used below 91 GeV and the\n"
274 << "Glauber-Gribov parameterization is used above 91 GeV.\n";
275}

◆ GetElementCrossSection()

G4double G4BGGPionElasticXS::GetElementCrossSection ( const G4DynamicParticle * dp,
G4int Z,
const G4Material * mat )
finalvirtual

Reimplemented from G4VCrossSectionDataSet.

Definition at line 116 of file G4BGGPionElasticXS.cc.

118{
119 // this method should be called only for Z > 1
120 G4double cross = 0.0;
121 G4double ekin = std::max(dp->GetKineticEnergy(), fLowestEnergy);
122 G4int Z = std::min(ZZ, 92);
123 if(1 == Z) {
124 cross = 1.0115*GetIsoCrossSection(dp,1,1);
125 } else {
126 if(ekin <= fLowEnergy) {
127 cross = (isPiplus) ? theCoulombFacPiPlus[Z]*CoulombFactorPiPlus(ekin, Z)
128 : theCoulombFacPiMinus[Z]*FactorPiMinus(ekin);
129 } else if(ekin > fGlauberEnergy) {
130 cross = (isPiplus) ? theGlauberFacPiPlus[Z] : theGlauberFacPiMinus[Z];
131 cross *= fGlauber->GetElasticGlauberGribov(dp, Z, theA[Z]);
132 } else {
133 cross = fPion->GetElasticCrossSection(dp, Z, theA[Z]);
134 }
135 }
136#ifdef G4VERBOSE
137 if(verboseLevel > 1) {
138 G4cout << "G4BGGPionElasticXS::GetElementCrossSection for "
140 << " Ekin(GeV)= " << dp->GetKineticEnergy()
141 << " in nucleus Z= " << Z << " A= " << theA[Z]
142 << " XS(b)= " << cross/barn
143 << G4endl;
144 }
145#endif
146 return cross;
147}
double G4double
Definition G4Types.hh:83
int G4int
Definition G4Types.hh:85
G4double GetIsoCrossSection(const G4DynamicParticle *, G4int Z, G4int A, const G4Isotope *iso=nullptr, const G4Element *elm=nullptr, const G4Material *mat=nullptr) final
G4ParticleDefinition * GetDefinition() const
G4double GetKineticEnergy() const

◆ GetIsoCrossSection()

G4double G4BGGPionElasticXS::GetIsoCrossSection ( const G4DynamicParticle * dp,
G4int Z,
G4int A,
const G4Isotope * iso = nullptr,
const G4Element * elm = nullptr,
const G4Material * mat = nullptr )
finalvirtual

Reimplemented from G4VCrossSectionDataSet.

Definition at line 152 of file G4BGGPionElasticXS.cc.

157{
158 // this method should be called only for Z = 1
159 fHadron->HadronNucleonXscNS(dp->GetDefinition(), theProton,
160 dp->GetKineticEnergy());
161 G4double cross = A*fHadron->GetElasticHadronNucleonXsc();
162
163#ifdef G4VERBOSE
164 if(verboseLevel > 1) {
165 G4cout << "G4BGGPionElasticXS::GetIsoCrossSection for "
167 << " Ekin(GeV)= " << dp->GetKineticEnergy()
168 << " in nucleus Z=1 A=" << A
169 << " XS(b)= " << cross/barn
170 << G4endl;
171 }
172#endif
173 return cross;
174}
const G4double A[17]

Referenced by GetElementCrossSection().

◆ IsElementApplicable()

G4bool G4BGGPionElasticXS::IsElementApplicable ( const G4DynamicParticle * ,
G4int Z,
const G4Material *  )
finalvirtual

Reimplemented from G4VCrossSectionDataSet.

Definition at line 98 of file G4BGGPionElasticXS.cc.

100{
101 return true;
102}

◆ IsIsoApplicable()

G4bool G4BGGPionElasticXS::IsIsoApplicable ( const G4DynamicParticle * ,
G4int Z,
G4int A,
const G4Element * elm,
const G4Material * mat )
finalvirtual

Reimplemented from G4VCrossSectionDataSet.

Definition at line 106 of file G4BGGPionElasticXS.cc.

109{
110 return (1 == Z);
111}

◆ operator=()

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

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