57G4double G4NeutronInelasticXS::coeff[] = {1.0};
58G4double G4NeutronInelasticXS::lowcoeff[] = {1.0};
60G4String G4NeutronInelasticXS::gDataDirectory =
"";
62static std::once_flag applyOnce;
72 elimit(20*
CLHEP::MeV),
73 lowElimit(1.0e-7*
CLHEP::eV)
77 G4cout <<
"G4NeutronInelasticXS::G4NeutronInelasticXS Initialise for Z < "
80 loglowElimit =
G4Log(lowElimit);
81 if (
nullptr == data) {
83 data->SetName(
"nInelastic");
88 if(ggXsection ==
nullptr)
96 outFile <<
"G4NeutronInelasticXS calculates the neutron inelastic scattering\n"
97 <<
"cross section on nuclei using data from the high precision\n"
98 <<
"neutron database. These data are simplified and smoothed over\n"
99 <<
"the resonance region in order to reduce CPU time.\n"
100 <<
"For high energy Glauber-Gribov cross section model is used\n";
138 G4int Z = std::min(ZZ, MAXZINEL-1);
144 if (ekin < lowElimit) {
149 auto pv = GetPhysicsVector(Z);
154 if (xs > 0.0) { xs *= std::sqrt(e0/ekin); }
155 }
else if (ekin <= pv->GetMaxEnergy()) {
156 xs = pv->LogVectorValue(ekin, loge);
158 xs = coeff[Z]*ggXsection->GetInelasticElementCrossSection(neutron, ekin,
164 G4cout <<
"G4NeutronInelasticXS::ElementCrossSection Z= " << Z
165 <<
" Ekin(MeV)= " << ekin/CLHEP::MeV
166 <<
", ElmXSinel(b)= " << xs/CLHEP::barn
198 G4int Z = std::min(ZZ, MAXZINEL-1);
212 if (ekin <= elimit && data->GetNumberOfComponents(Z) > 0) {
213 auto pviso = data->GetComponentDataByID(Z,
A);
214 if (
nullptr != pviso) {
215 const G4double e0 = pviso->Energy(0);
217 xs = pviso->LogVectorValue(ekin, loge);
220 if (xs > 0.0) { xs *= std::sqrt(e0/ekin); }
224 G4cout <<
"G4NeutronInelasticXS::IsoXS: Ekin(MeV)= "
226 <<
" xs(b)= " << xs/CLHEP::barn
227 <<
" Z= " << Z <<
" A= " <<
A <<
G4endl;
239 G4cout <<
"G4NeutronInelasticXS::IsoXS: Z= " << Z <<
" A= " <<
A
240 <<
" Ekin(MeV)= " << ekin/CLHEP::MeV
241 <<
", ElmXS(b)= " << xs/CLHEP::barn <<
G4endl;
252 if(1 == nIso) {
return iso; }
256 if (
nullptr == data->GetElementData(Z)) { InitialiseOnFly(Z); }
264 if (Z >= MAXZINEL || 0 == data->GetNumberOfComponents(Z)) {
265 for (j=0; j<nIso; ++j) {
266 sum += abundVector[j];
276 auto nn = temp.size();
277 if(nn < nIso) { temp.resize(nIso, 0.); }
279 for (j=0; j<nIso; ++j) {
287 for (j = 0; j<nIso; ++j) {
288 if (temp[j] >= sum) {
300 G4cout <<
"G4NeutronInelasticXS::BuildPhysicsTable for "
306 <<
" only neutron is allowed";
307 G4Exception(
"G4NeutronInelasticXS::BuildPhysicsTable(..)",
"had012",
315 std::call_once(applyOnce, [
this]() { isInitializer =
true; });
321 for (
auto const & elm : *table ) {
322 G4int Z = std::max( 1, std::min( elm->GetZasInt(), MAXZINEL-1) );
323 if (
nullptr == data->GetElementData(Z) ) { Initialise(Z); }
328 std::size_t nIso = temp.size();
329 for (
auto const & elm : *table ) {
330 std::size_t n = elm->GetNumberOfIsotopes();
331 if (n > nIso) { nIso = n; }
333 temp.resize(nIso, 0.0);
336const G4String& G4NeutronInelasticXS::FindDirectoryPath()
339 if (gDataDirectory.empty()) {
340 std::ostringstream ost;
342 gDataDirectory = ost.str();
344 return gDataDirectory;
347void G4NeutronInelasticXS::InitialiseOnFly(
G4int Z)
354void G4NeutronInelasticXS::Initialise(
G4int Z)
356 if (
nullptr != data->GetElementData(Z)) {
return; }
359 std::ostringstream ost;
360 ost << FindDirectoryPath() << Z;
361 G4PhysicsVector* v = RetrieveVector(ost,
true);
362 data->InitialiseForElement(Z, v);
364 G4cout <<
"G4NeutronInelasticXS::Initialise for Z= " << Z
365 <<
" A= " << aeff[Z] <<
" Amin= " << amin[Z]
366 <<
" Amax= " << amax[Z] <<
G4endl;
370 if (amin[Z] < amax[Z]) {
372 for (
G4int A=amin[Z];
A<=amax[Z]; ++
A) {
373 std::ostringstream ost1;
374 ost1 << gDataDirectory << Z <<
"_" <<
A;
375 G4PhysicsVector* v1 = RetrieveVector(ost1,
false);
378 G4int nmax = amax[Z] -
A + 1;
379 data->InitialiseForComponent(Z, nmax);
382 data->AddComponent(Z,
A, v1);
387 if (noComp) { data->InitialiseForComponent(Z, 0); }
392 G4double sig2 = ggXsection->GetInelasticElementCrossSection(neutron,
394 coeff[Z] = (sig2 > 0.) ? sig1/sig2 : 1.0;
398G4NeutronInelasticXS::RetrieveVector(std::ostringstream& ost,
G4bool warn)
400 G4PhysicsLogVector* v =
nullptr;
401 std::ifstream filein(ost.str().c_str());
402 if (!filein.is_open()) {
405 ed <<
"Data file <" << ost.str().c_str()
406 <<
"> is not opened!";
407 G4Exception(
"G4NeutronInelasticXS::RetrieveVector(..)",
"had014",
412 G4cout <<
"File " << ost.str()
413 <<
" is opened by G4NeutronInelasticXS" <<
G4endl;
416 v =
new G4PhysicsLogVector();
419 ed <<
"Data file <" << ost.str().c_str()
420 <<
"> is not retrieved!";
421 G4Exception(
"G4NeutronInelasticXS::RetrieveVector(..)",
"had015",
G4TemplateAutoLock< G4Mutex > G4AutoLock
std::vector< G4Element * > G4ElementTable
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
G4double G4Log(G4double x)
#define G4MUTEX_INITIALIZER
G4GLOB_DLL std::ostream G4cout
G4VComponentCrossSection * GetComponentCrossSection(const G4String &name)
static G4CrossSectionDataSetRegistry * Instance()
G4double GetLogKineticEnergy() const
G4double GetKineticEnergy() const
G4double * GetRelativeAbundanceVector() const
std::size_t GetNumberOfIsotopes() const
const G4Isotope * GetIsotope(G4int iso) const
static const G4ElementTable * GetElementTable()
static G4HadronicParameters * Instance()
const G4String & GetDirPARTICLEXS() const
G4double ComputeCrossSectionPerElement(G4double kinEnergy, G4double loge, const G4ParticleDefinition *, const G4Element *, const G4Material *) final
static const char * Default_Name()
G4double ComputeIsoCrossSection(G4double kinEnergy, G4double loge, const G4ParticleDefinition *, G4int Z, G4int A, const G4Isotope *iso, const G4Element *elm, const G4Material *mat) final
G4double IsoCrossSection(G4double ekin, G4double logekin, G4int Z, G4int A)
G4double ElementCrossSection(G4double kinEnergy, G4double loge, G4int Z)
G4bool IsElementApplicable(const G4DynamicParticle *, G4int Z, const G4Material *) final
void BuildPhysicsTable(const G4ParticleDefinition &) final
G4bool IsIsoApplicable(const G4DynamicParticle *, G4int Z, G4int A, const G4Element *, const G4Material *) final
void CrossSectionDescription(std::ostream &) const final
const G4Isotope * SelectIsotope(const G4Element *, G4double kinEnergy, G4double logE) 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
const G4String & GetParticleName() const
G4double GetMaxEnergy() const
G4bool Retrieve(std::ifstream &fIn, G4bool ascii=false)
std::size_t GetVectorLength() const
G4VCrossSectionDataSet(const G4String &nam="")
void SetForAllAtomsAndEnergies(G4bool val)