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

#include <G4NeutronElasticXS.hh>

+ Inheritance diagram for G4NeutronElasticXS:

Public Member Functions

 G4NeutronElasticXS ()
 
 ~G4NeutronElasticXS () final
 
G4bool IsElementApplicable (const G4DynamicParticle *, G4int Z, const G4Material *) final
 
G4bool IsIsoApplicable (const G4DynamicParticle *, G4int Z, G4int A, const G4Element *, const G4Material *) final
 
G4double GetElementCrossSection (const G4DynamicParticle *, G4int Z, const G4Material *) final
 
G4double GetIsoCrossSection (const G4DynamicParticle *, G4int Z, G4int A, const G4Isotope *iso, const G4Element *elm, const G4Material *mat) final
 
G4double ComputeCrossSectionPerElement (G4double kinEnergy, G4double loge, const G4ParticleDefinition *, const G4Element *, const G4Material *) final
 
G4double ComputeIsoCrossSection (G4double kinEnergy, G4double loge, const G4ParticleDefinition *, G4int Z, G4int A, const G4Isotope *iso, const G4Element *elm, const G4Material *mat) final
 
const G4IsotopeSelectIsotope (const G4Element *, G4double kinEnergy, G4double logE) final
 
void BuildPhysicsTable (const G4ParticleDefinition &) final
 
void CrossSectionDescription (std::ostream &) const final
 
G4double ElementCrossSection (G4double kinEnergy, G4double loge, G4int Z)
 
G4NeutronElasticXSoperator= (const G4NeutronElasticXS &right)=delete
 
 G4NeutronElasticXS (const G4NeutronElasticXS &)=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 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
 

Static Public Member Functions

static const char * Default_Name ()
 

Additional Inherited Members

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

Detailed Description

Definition at line 55 of file G4NeutronElasticXS.hh.

Constructor & Destructor Documentation

◆ G4NeutronElasticXS() [1/2]

G4NeutronElasticXS::G4NeutronElasticXS ( )

Definition at line 66 of file G4NeutronElasticXS.cc.

68 neutron(G4Neutron::Neutron())
69{
70 // verboseLevel = 0;
71 if (verboseLevel > 0){
72 G4cout << "G4NeutronElasticXS::G4NeutronElasticXS Initialise for Z < "
73 << MAXZEL << G4endl;
74 }
75 ggXsection =
77 if (ggXsection == nullptr)
78 ggXsection = new G4ComponentGGHadronNucleusXsc();
80 FindDirectoryPath();
81}
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout
G4VComponentCrossSection * GetComponentCrossSection(const G4String &name)
static G4CrossSectionDataSetRegistry * Instance()
static const char * Default_Name()
static G4Neutron * Neutron()
Definition G4Neutron.cc:101
G4VCrossSectionDataSet(const G4String &nam="")
void SetForAllAtomsAndEnergies(G4bool val)

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

◆ ~G4NeutronElasticXS()

G4NeutronElasticXS::~G4NeutronElasticXS ( )
final

Definition at line 83 of file G4NeutronElasticXS.cc.

84{
85 if (isFirst) {
86 for(G4int i=0; i<MAXZEL; ++i) {
87 delete data[i];
88 data[i] = nullptr;
89 }
90 }
91}
int G4int
Definition G4Types.hh:85

◆ G4NeutronElasticXS() [2/2]

G4NeutronElasticXS::G4NeutronElasticXS ( const G4NeutronElasticXS & )
delete

Member Function Documentation

◆ BuildPhysicsTable()

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

Reimplemented from G4VCrossSectionDataSet.

Definition at line 198 of file G4NeutronElasticXS.cc.

199{
200 if(verboseLevel > 0){
201 G4cout << "G4NeutronElasticXS::BuildPhysicsTable for "
202 << p.GetParticleName() << G4endl;
203 }
204 if(p.GetParticleName() != "neutron") {
206 ed << p.GetParticleName() << " is a wrong particle type -"
207 << " only neutron is allowed";
208 G4Exception("G4NeutronElasticXS::BuildPhysicsTable(..)","had012",
209 FatalException, ed, "");
210 return;
211 }
212 if (fLock || isFirst) {
213 G4AutoLock l(&nElasticXSMutex);
214 if (fLock) {
215 isFirst = true;
216 fLock = false;
217 FindDirectoryPath();
218 }
219
220 // Access to elements
222 for ( auto & elm : *table ) {
223 G4int Z = std::max( 1, std::min( elm->GetZasInt(), MAXZEL-1) );
224 if ( nullptr == data[Z] ) { Initialise(Z); }
225 }
226 l.unlock();
227 }
228}
G4TemplateAutoLock< G4Mutex > G4AutoLock
std::vector< G4Element * > G4ElementTable
@ FatalException
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
static const G4ElementTable * GetElementTable()
Definition G4Element.cc:401
const G4String & GetParticleName() const

◆ ComputeCrossSectionPerElement()

G4double G4NeutronElasticXS::ComputeCrossSectionPerElement ( G4double kinEnergy,
G4double loge,
const G4ParticleDefinition * ,
const G4Element * elm,
const G4Material *  )
finalvirtual

Reimplemented from G4VCrossSectionDataSet.

Definition at line 125 of file G4NeutronElasticXS.cc.

129{
130 return ElementCrossSection(ekin, loge, elm->GetZasInt());
131}
G4int GetZasInt() const
Definition G4Element.hh:120
G4double ElementCrossSection(G4double kinEnergy, G4double loge, G4int Z)

◆ ComputeIsoCrossSection()

G4double G4NeutronElasticXS::ComputeIsoCrossSection ( G4double kinEnergy,
G4double loge,
const G4ParticleDefinition * ,
G4int Z,
G4int A,
const G4Isotope * iso,
const G4Element * elm,
const G4Material * mat )
finalvirtual

Reimplemented from G4VCrossSectionDataSet.

Definition at line 153 of file G4NeutronElasticXS.cc.

158{
159 return ElementCrossSection(ekin, loge, Z)*A/aeff[Z];
160}
const G4double A[17]

◆ CrossSectionDescription()

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

Reimplemented from G4VCrossSectionDataSet.

Definition at line 93 of file G4NeutronElasticXS.cc.

94{
95 outFile << "G4NeutronElasticXS calculates the neutron elastic scattering\n"
96 << "cross section on nuclei using data from the high precision\n"
97 << "neutron database. These data are simplified and smoothed over\n"
98 << "the resonance region in order to reduce CPU time.\n"
99 << "For high energies Glauber-Gribiv cross section is used.\n";
100}

◆ Default_Name()

static const char * G4NeutronElasticXS::Default_Name ( )
inlinestatic

Definition at line 63 of file G4NeutronElasticXS.hh.

63{return "G4NeutronElasticXS";}

Referenced by G4NeutronElasticXS().

◆ ElementCrossSection()

G4double G4NeutronElasticXS::ElementCrossSection ( G4double kinEnergy,
G4double loge,
G4int Z )

Definition at line 133 of file G4NeutronElasticXS.cc.

134{
135 G4int Z = (ZZ >= MAXZEL) ? MAXZEL - 1 : ZZ;
136 auto pv = GetPhysicsVector(Z);
137
138 G4double xs = (ekin <= pv->GetMaxEnergy()) ? pv->LogVectorValue(ekin, loge)
139 : coeff[Z]*ggXsection->GetElasticElementCrossSection(neutron, ekin,
140 Z, aeff[Z]);
141
142#ifdef G4VERBOSE
143 if(verboseLevel > 1) {
144 G4cout << "Z= " << Z << " Ekin(MeV)= " << ekin/CLHEP::MeV
145 << ", nElmXSel(b)= " << xs/CLHEP::barn
146 << G4endl;
147 }
148#endif
149 return xs;
150}
double G4double
Definition G4Types.hh:83

Referenced by ComputeCrossSectionPerElement(), ComputeIsoCrossSection(), GetElementCrossSection(), and GetIsoCrossSection().

◆ GetElementCrossSection()

G4double G4NeutronElasticXS::GetElementCrossSection ( const G4DynamicParticle * aParticle,
G4int Z,
const G4Material *  )
finalvirtual

Reimplemented from G4VCrossSectionDataSet.

Definition at line 117 of file G4NeutronElasticXS.cc.

119{
120 return ElementCrossSection(aParticle->GetKineticEnergy(),
121 aParticle->GetLogKineticEnergy(), Z);
122}
G4double GetLogKineticEnergy() const
G4double GetKineticEnergy() const

◆ GetIsoCrossSection()

G4double G4NeutronElasticXS::GetIsoCrossSection ( const G4DynamicParticle * aParticle,
G4int Z,
G4int A,
const G4Isotope * iso,
const G4Element * elm,
const G4Material * mat )
finalvirtual

Reimplemented from G4VCrossSectionDataSet.

Definition at line 163 of file G4NeutronElasticXS.cc.

167{
168 return ElementCrossSection(aParticle->GetKineticEnergy(),
169 aParticle->GetLogKineticEnergy(), Z)*A/aeff[Z];
170
171}

◆ IsElementApplicable()

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

Reimplemented from G4VCrossSectionDataSet.

Definition at line 103 of file G4NeutronElasticXS.cc.

105{
106 return true;
107}

◆ IsIsoApplicable()

G4bool G4NeutronElasticXS::IsIsoApplicable ( const G4DynamicParticle * ,
G4int Z,
G4int A,
const G4Element * ,
const G4Material *  )
finalvirtual

Reimplemented from G4VCrossSectionDataSet.

Definition at line 109 of file G4NeutronElasticXS.cc.

112{
113 return false;
114}

◆ operator=()

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

◆ SelectIsotope()

const G4Isotope * G4NeutronElasticXS::SelectIsotope ( const G4Element * anElement,
G4double kinEnergy,
G4double logE )
finalvirtual

Reimplemented from G4VCrossSectionDataSet.

Definition at line 173 of file G4NeutronElasticXS.cc.

175{
176 G4int nIso = (G4int)anElement->GetNumberOfIsotopes();
177 const G4Isotope* iso = anElement->GetIsotope(0);
178
179 //G4cout << "SelectIsotope NIso= " << nIso << G4endl;
180 if(1 == nIso) { return iso; }
181
182 const G4double* abundVector = anElement->GetRelativeAbundanceVector();
184 G4double sum = 0.0;
185
186 // isotope wise cross section not used
187 for (G4int j=0; j<nIso; ++j) {
188 sum += abundVector[j];
189 if(q <= sum) {
190 iso = anElement->GetIsotope(j);
191 break;
192 }
193 }
194 return iso;
195}
#define G4UniformRand()
Definition Randomize.hh:52
G4double * GetRelativeAbundanceVector() const
Definition G4Element.hh:149
std::size_t GetNumberOfIsotopes() const
Definition G4Element.hh:143
const G4Isotope * GetIsotope(G4int iso) const
Definition G4Element.hh:151

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