#include <G4NeutronElasticXS.hh>
|
| 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 G4Isotope * | SelectIsotope (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) |
|
G4NeutronElasticXS & | operator= (const G4NeutronElasticXS &right)=delete |
|
| G4NeutronElasticXS (const G4NeutronElasticXS &)=delete |
|
| 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 G4String & | GetName () const |
|
void | SetName (const G4String &nam) |
|
G4VCrossSectionDataSet & | operator= (const G4VCrossSectionDataSet &right)=delete |
|
| G4VCrossSectionDataSet (const G4VCrossSectionDataSet &)=delete |
|
Definition at line 55 of file G4NeutronElasticXS.hh.
◆ G4NeutronElasticXS() [1/2]
G4NeutronElasticXS::G4NeutronElasticXS |
( |
| ) |
|
Definition at line 66 of file G4NeutronElasticXS.cc.
69{
70
72 G4cout <<
"G4NeutronElasticXS::G4NeutronElasticXS Initialise for Z < "
74 }
75 ggXsection =
77 if (ggXsection == nullptr)
78 ggXsection = new G4ComponentGGHadronNucleusXsc();
80 FindDirectoryPath();
81}
G4GLOB_DLL std::ostream G4cout
G4VComponentCrossSection * GetComponentCrossSection(const G4String &name)
static G4CrossSectionDataSetRegistry * Instance()
static const char * Default_Name()
static G4Neutron * Neutron()
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}
◆ G4NeutronElasticXS() [2/2]
◆ BuildPhysicsTable()
Reimplemented from G4VCrossSectionDataSet.
Definition at line 198 of file G4NeutronElasticXS.cc.
199{
201 G4cout <<
"G4NeutronElasticXS::BuildPhysicsTable for "
203 }
207 << " only neutron is allowed";
208 G4Exception(
"G4NeutronElasticXS::BuildPhysicsTable(..)",
"had012",
210 return;
211 }
212 if (fLock || isFirst) {
214 if (fLock) {
215 isFirst = true;
216 fLock = false;
217 FindDirectoryPath();
218 }
219
220
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
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
static const G4ElementTable * GetElementTable()
const G4String & GetParticleName() const
◆ ComputeCrossSectionPerElement()
◆ ComputeIsoCrossSection()
◆ 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 |
◆ ElementCrossSection()
◆ GetElementCrossSection()
◆ GetIsoCrossSection()
◆ IsElementApplicable()
◆ IsIsoApplicable()
◆ operator=()
◆ SelectIsotope()
Reimplemented from G4VCrossSectionDataSet.
Definition at line 173 of file G4NeutronElasticXS.cc.
175{
177 const G4Isotope* iso = anElement->
GetIsotope(0);
178
179
180 if(1 == nIso) { return iso; }
181
185
186
187 for (
G4int j=0; j<nIso; ++j) {
188 sum += abundVector[j];
189 if(q <= sum) {
191 break;
192 }
193 }
194 return iso;
195}
G4double * GetRelativeAbundanceVector() const
std::size_t GetNumberOfIsotopes() const
const G4Isotope * GetIsotope(G4int iso) const
The documentation for this class was generated from the following files: