56G4String G4NeutronCaptureXS::gDataDirectory =
"";
58static std::once_flag applyOnce;
63 const G4int MAXZCAPTURE = 92;
72 G4cout <<
"G4NeutronCaptureXS::G4NeutronCaptureXS: Initialise for Z < "
75 logElimit =
G4Log(elimit);
76 if (
nullptr == data) {
78 data->SetName(
"nCapture");
85 outFile <<
"G4NeutronCaptureXS calculates the neutron capture cross sections\n"
86 <<
"on nuclei using data from the high precision neutron database.\n"
87 <<
"These data are simplified and smoothed over the resonance region\n"
88 <<
"in order to reduce CPU time. G4NeutronCaptureXS is set to zero\n"
89 <<
"above 20 MeV for all targets. For Z > 92 the cross section of\n"
90 <<
"Uranium is used.\n";
136 G4int Z = std::min(ZZ, MAXZCAPTURE);
144 auto pv = GetPhysicsVector(Z);
146 G4double xs = (ekin >= e0) ? pv->LogVectorValue(ekin, logEkin)
147 : (*pv)[0]*std::sqrt(e0/ekin);
151 G4cout <<
"Ekin= " << ekin/CLHEP::MeV
152 <<
" ElmXScap(b)= " << xs/CLHEP::barn <<
G4endl;
183 if (eKin > emax) {
return xs; }
185 G4int Z = std::min(ZZ, MAXZCAPTURE);
193 auto pv = GetPhysicsVector(Z);
194 if (pv ==
nullptr) {
return xs; }
197 if (data->GetNumberOfComponents(Z) > 0) {
199 if(pviso !=
nullptr) {
202 : (*pviso)[0]*std::sqrt(e0/ekin);
205 G4cout <<
"G4NeutronCaptureXS::IsoXS: Ekin(MeV)= " << ekin/MeV
206 <<
" xs(b)= " << xs/barn
207 <<
" Z= " << Z <<
" A= " <<
A <<
G4endl;
215 xs = (ekin >= e0) ? pv->LogVectorValue(ekin, logEkin)
216 : (*pv)[0]*std::sqrt(e0/ekin);
219 G4cout <<
"G4NeutronCaptureXS::IsoXS: Ekin(MeV)= " << ekin/MeV
220 <<
" xs(b)= " << xs/barn
221 <<
" Z= " << Z <<
" A= " <<
A <<
" no iso XS" <<
G4endl;
235 if(1 == nIso) {
return iso; }
239 if (
nullptr == data->GetElementData(Z)) { InitialiseOnFly(Z); }
247 if (Z > MAXZCAPTURE || 0 == data->GetNumberOfComponents(Z)) {
248 for (j = 0; j<nIso; ++j) {
249 sum += abundVector[j];
258 if (nn < nIso) { temp.resize(nIso, 0.); }
260 for (j=0; j<nIso; ++j) {
266 for (j = 0; j<nIso; ++j) {
267 if (temp[j] >= sum) {
279 G4cout <<
"G4NeutronCaptureXS::BuildPhysicsTable for "
285 <<
" only neutron is allowed";
286 G4Exception(
"G4NeutronCaptureXS::BuildPhysicsTable(..)",
"had012",
295 std::call_once(applyOnce, [
this]() { isInitializer =
true; });
300 for (
auto const & elm : *table ) {
301 G4int Z = std::max( 1, std::min( elm->GetZasInt(), MAXZCAPTURE) );
302 if (
nullptr == data->GetElementData(Z) ) { Initialise(Z); }
308 std::size_t nIso = temp.size();
309 for (
auto const & elm : *table ) {
310 std::size_t n = elm->GetNumberOfIsotopes();
311 if (n > nIso) { nIso = n; }
313 temp.resize(nIso, 0.0);
316const G4String& G4NeutronCaptureXS::FindDirectoryPath()
319 if(gDataDirectory.empty()) {
320 std::ostringstream ost;
322 gDataDirectory = ost.str();
324 return gDataDirectory;
327void G4NeutronCaptureXS::InitialiseOnFly(
G4int Z)
334void G4NeutronCaptureXS::Initialise(
G4int Z)
336 if (
nullptr != data->GetElementData(Z)) {
return; }
339 std::ostringstream ost;
340 ost << FindDirectoryPath() << Z ;
341 G4PhysicsVector* v = RetrieveVector(ost,
true);
342 data->InitialiseForElement(Z, v);
346 if (amin[Z] < amax[Z]) {
347 for(
G4int A=amin[Z];
A<=amax[Z]; ++
A) {
348 std::ostringstream ost1;
349 ost1 << gDataDirectory << Z <<
"_" <<
A;
350 G4PhysicsVector* v1 = RetrieveVector(ost1,
false);
353 G4int nmax = amax[Z] -
A + 1;
354 data->InitialiseForComponent(Z, nmax);
357 data->AddComponent(Z,
A, v1);
362 if (noComp) { data->InitialiseForComponent(Z, 0); }
366G4NeutronCaptureXS::RetrieveVector(std::ostringstream& ost,
G4bool warn)
368 G4PhysicsLogVector* v =
nullptr;
369 std::ifstream filein(ost.str().c_str());
370 if (!filein.is_open()) {
373 ed <<
"Data file <" << ost.str().c_str()
374 <<
"> is not opened!";
375 G4Exception(
"G4NeutronCaptureXS::RetrieveVector(..)",
"had014",
380 G4cout <<
"File " << ost.str()
381 <<
" is opened by G4NeutronCaptureXS" <<
G4endl;
384 v =
new G4PhysicsLogVector();
387 ed <<
"Data file <" << ost.str().c_str()
388 <<
"> is not retrieved!";
389 G4Exception(
"G4NeutronCaptureXS::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
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 ComputeIsoCrossSection(G4double kinEnergy, G4double loge, const G4ParticleDefinition *, G4int Z, G4int A, const G4Isotope *iso, const G4Element *elm, const G4Material *mat) final
void CrossSectionDescription(std::ostream &) const final
G4bool IsIsoApplicable(const G4DynamicParticle *, G4int Z, G4int A, const G4Element *, const G4Material *) final
G4double GetIsoCrossSection(const G4DynamicParticle *, G4int Z, G4int A, const G4Isotope *iso, const G4Element *elm, const G4Material *mat) final
const G4Isotope * SelectIsotope(const G4Element *, G4double kinEnergy, G4double logE) final
G4bool IsElementApplicable(const G4DynamicParticle *, G4int Z, const G4Material *) final
G4double IsoCrossSection(G4double ekin, G4double logekin, G4int Z, G4int A)
G4double ElementCrossSection(G4double kinEnergy, G4double loge, G4int Z)
void BuildPhysicsTable(const G4ParticleDefinition &) final
G4double ComputeCrossSectionPerElement(G4double kinEnergy, G4double loge, const G4ParticleDefinition *, const G4Element *, const G4Material *) final
static const char * Default_Name()
G4double GetElementCrossSection(const G4DynamicParticle *, G4int Z, const G4Material *) final
const G4String & GetParticleName() const
G4double Energy(const std::size_t index) const
G4double LogVectorValue(const G4double energy, const G4double theLogEnergy) const
G4bool Retrieve(std::ifstream &fIn, G4bool ascii=false)
G4VCrossSectionDataSet(const G4String &nam="")