54 element_cache =
nullptr;
55 material_cache =
nullptr;
57 indexOfThermalElement.clear();
79 if (dic.find(std::pair<const G4Material*, const G4Element*>((
G4Material*)
nullptr, element))
81 || dic.find(std::pair<const G4Material*, const G4Element*>(material, element)) != dic.end())
94 element_cache = element;
95 material_cache = material;
101void G4ParticleHPThermalScatteringData::clearCurrentXSData()
103 if (coherent !=
nullptr) {
104 for (
auto it = coherent->cbegin(); it != coherent->cend(); ++it) {
105 if (it->second !=
nullptr) {
106 for (
auto itt = it->second->cbegin(); itt != it->second->cend(); ++itt) {
115 if (incoherent !=
nullptr) {
116 for (
auto it = incoherent->cbegin(); it != incoherent->cend(); ++it) {
117 if (it->second !=
nullptr) {
118 for (
auto itt = it->second->cbegin(); itt != it->second->cend(); ++itt) {
127 if (inelastic !=
nullptr) {
128 for (
auto it = inelastic->cbegin(); it != inelastic->cend(); ++it) {
129 if (it->second !=
nullptr) {
130 for (
auto itt = it->second->cbegin(); itt != it->second->cend(); ++itt) {
152 for (
int it : indexOfThermalElement) {
153 if (ie == it)
return true;
165 "Attempt to use NeutronHP data for particles other than neutrons!!!");
172 std::map<G4String, G4int> co_dic;
178 for (std::size_t i = 0; i < numberOfMaterials; ++i) {
179 G4Material* material = (*theMaterialTable)[i];
181 for (
G4int j = 0; j < numberOfElements; ++j) {
183 if (names->IsThisThermalElement(material->
GetName(), element->
GetName())) {
184 G4int ts_ID_of_this_geometry;
186 if (co_dic.find(ts_ndl_name) != co_dic.cend()) {
187 ts_ID_of_this_geometry = co_dic.find(ts_ndl_name)->second;
190 ts_ID_of_this_geometry = (
G4int)co_dic.size();
191 co_dic.insert(std::pair<G4String, G4int>(ts_ndl_name, ts_ID_of_this_geometry));
194 dic.insert(std::pair<std::pair<G4Material*, const G4Element*>,
G4int>(
195 std::pair<G4Material*, const G4Element*>(material, element), ts_ID_of_this_geometry));
204 for (std::size_t i = 0; i < numberOfElements; ++i) {
205 const G4Element* element = (*theElementTable)[i];
206 if (names->IsThisThermalElement(element->
GetName())) {
207 if (names->IsThisThermalElement(element->
GetName())) {
208 G4int ts_ID_of_this_geometry;
210 if (co_dic.find(ts_ndl_name) != co_dic.cend()) {
211 ts_ID_of_this_geometry = co_dic.find(ts_ndl_name)->second;
214 ts_ID_of_this_geometry = (
G4int)co_dic.size();
215 co_dic.insert(std::pair<G4String, G4int>(ts_ndl_name, ts_ID_of_this_geometry));
218 dic.insert(std::pair<std::pair<const G4Material*, const G4Element*>,
G4int>(
219 std::pair<const G4Material*, const G4Element*>((
G4Material*)
nullptr, element),
220 ts_ID_of_this_geometry));
226 G4cout <<
"Neutron HP Thermal Scattering Data: Following material-element pairs and/or elements "
229 for (
const auto& it : dic) {
230 if (it.first.first !=
nullptr) {
231 G4cout <<
"Material " << it.first.first->GetName() <<
" - Element "
232 << it.first.second->GetName() <<
", internal thermal scattering id " << it.second
236 G4cout <<
"Element " << it.first.second->GetName() <<
", internal thermal scattering id "
249 if (coherent ==
nullptr)
250 coherent =
new std::map<G4int, std::map<G4double, G4ParticleHPVector*>*>;
251 if (incoherent ==
nullptr)
252 incoherent =
new std::map<G4int, std::map<G4double, G4ParticleHPVector*>*>;
253 if (inelastic ==
nullptr)
254 inelastic =
new std::map<G4int, std::map<G4double, G4ParticleHPVector*>*>;
262 "Please setenv G4NEUTRONHPDATA to point to the neutron cross-section files.");
265 dirName = baseName +
"/ThermalScattering";
270 for (
const auto& it : co_dic) {
271 ndl_filename = it.first;
272 G4int ts_ID = it.second;
275 full_name = dirName +
"/Coherent/CrossSection/" + ndl_filename;
276 auto coh_amapTemp_EnergyCross = readData(full_name);
277 coherent->insert(std::pair<
G4int, std::map<G4double, G4ParticleHPVector*>*>(
278 ts_ID, coh_amapTemp_EnergyCross));
281 full_name = dirName +
"/Incoherent/CrossSection/" + ndl_filename;
282 auto incoh_amapTemp_EnergyCross = readData(full_name);
283 incoherent->insert(std::pair<
G4int, std::map<G4double, G4ParticleHPVector*>*>(
284 ts_ID, incoh_amapTemp_EnergyCross));
287 full_name = dirName +
"/Inelastic/CrossSection/" + ndl_filename;
288 auto inela_amapTemp_EnergyCross = readData(full_name);
289 inelastic->insert(std::pair<
G4int, std::map<G4double, G4ParticleHPVector*>*>(
290 ts_ID, inela_amapTemp_EnergyCross));
298std::map<G4double, G4ParticleHPVector*>*
299G4ParticleHPThermalScatteringData::readData(
const G4String& full_name)
301 auto aData =
new std::map<G4double, G4ParticleHPVector*>;
303 std::istringstream theChannel;
307 while (theChannel >> dummy)
315 anEnergyCross->Init(theChannel, nData, eV, barn);
316 aData->insert(std::pair<G4double, G4ParticleHPVector*>(temp, anEnergyCross));
326 "Attempt to use NeutronHP data for particles other than neutrons!!!");
335 G4int ts_id = getTS_ID(aM, anE);
337 if (ts_id == -1)
return result;
341 G4double Xcoh = GetX(aP, aT, coherent->find(ts_id)->second);
342 G4double Xincoh = GetX(aP, aT, incoherent->find(ts_id)->second);
343 G4double Xinela = GetX(aP, aT, inelastic->find(ts_id)->second);
345 result = Xcoh + Xincoh + Xinela;
355 G4int ts_id = getTS_ID(aM, anE);
357 result = GetX(aP, aT, inelastic->find(ts_id)->second);
366 G4int ts_id = getTS_ID(aM, anE);
368 result = GetX(aP, aT, coherent->find(ts_id)->second);
377 G4int ts_id = getTS_ID(aM, anE);
379 result = GetX(aP, aT, incoherent->find(ts_id)->second);
383G4int G4ParticleHPThermalScatteringData::getTS_ID(
const G4Material* material,
387 if (dic.find(std::pair<const G4Material*, const G4Element*>((
G4Material*)
nullptr, element))
389 return dic.find(std::pair<const G4Material*, const G4Element*>((
G4Material*)
nullptr, element))
391 if (dic.find(std::pair<const G4Material*, const G4Element*>(material, element)) != dic.end())
392 return dic.find(std::pair<const G4Material*, const G4Element*>(material, element))->second;
396G4double G4ParticleHPThermalScatteringData::
398 std::map<G4double, G4ParticleHPVector*>* amapTemp_EnergyCross)
401 if (amapTemp_EnergyCross->empty())
return result;
405 if (amapTemp_EnergyCross->size() == 1) {
406 if (std::fabs(aT - amapTemp_EnergyCross->cbegin()->first) / amapTemp_EnergyCross->begin()->first
410 <<
"G4ParticleHPThermalScatteringData:: The temperature of material (" << aT / kelvin
411 <<
"K) is different more than 10% from temperature of thermal scattering file expected ("
412 << amapTemp_EnergyCross->begin()->first <<
"K). Result may not be reliable." <<
G4endl;
414 result = amapTemp_EnergyCross->begin()->second->GetXsec(eKinetic);
418 auto it = amapTemp_EnergyCross->cbegin();
419 for (it = amapTemp_EnergyCross->cbegin(); it != amapTemp_EnergyCross->cend(); ++it) {
420 if (aT < it->first)
break;
422 if (it == amapTemp_EnergyCross->cbegin()) {
425 else if (it == amapTemp_EnergyCross->cend()) {
430 G4double XH = it->second->GetXsec(eKinetic);
432 if (it != amapTemp_EnergyCross->cbegin()) --it;
434 G4double XL = it->second->GetXsec(eKinetic);
436 if (TH == TL)
throw G4HadronicException(__FILE__, __LINE__,
"Thermal Scattering Data Error!");
439 G4double X = (XH - XL) / (TH - TL) * (T - TL) + XL;
448 names->AddThermalElement(nameG4Element, filename);
453 outFile <<
"High Precision cross data based on thermal scattering data in evaluated nuclear data "
454 "libraries for neutrons below 5eV on specific materials\n";
const char * G4FindDataDir(const char *)
std::vector< G4Material * > G4MaterialTable
G4GLOB_DLL std::ostream G4cout
G4ParticleDefinition * GetDefinition() const
G4double GetKineticEnergy() const
static std::size_t GetNumberOfElements()
std::size_t GetIndex() const
const G4String & GetName() const
static const G4ElementTable * GetElementTable()
G4double GetTemperature() const
const G4Element * GetElement(G4int iel) const
static std::size_t GetNumberOfMaterials()
static G4MaterialTable * GetMaterialTable()
std::size_t GetNumberOfElements() const
const G4String & GetName() const
static G4Neutron * Neutron()
void RegisterThermalScatteringIncoherentCrossSections(std::map< G4int, std::map< G4double, G4ParticleHPVector * > * > *val)
std::map< G4int, std::map< G4double, G4ParticleHPVector * > * > * GetThermalScatteringCoherentCrossSections() const
void RegisterThermalScatteringCoherentCrossSections(std::map< G4int, std::map< G4double, G4ParticleHPVector * > * > *val)
std::map< G4int, std::map< G4double, G4ParticleHPVector * > * > * GetThermalScatteringInelasticCrossSections() const
void GetDataStream(const G4String &, std::istringstream &iss)
static G4ParticleHPManager * GetInstance()
void RegisterThermalScatteringInelasticCrossSections(std::map< G4int, std::map< G4double, G4ParticleHPVector * > * > *val)
std::map< G4int, std::map< G4double, G4ParticleHPVector * > * > * GetThermalScatteringIncoherentCrossSections() const
G4ParticleHPThermalScatteringData()
G4double GetCrossSection(const G4DynamicParticle *, const G4Element *, const G4Material *)
G4double GetIncoherentCrossSection(const G4DynamicParticle *, const G4Element *, const G4Material *)
G4bool IsIsoApplicable(const G4DynamicParticle *, G4int, G4int, const G4Element *, const G4Material *) override
G4double GetIsoCrossSection(const G4DynamicParticle *, G4int, G4int, const G4Isotope *, const G4Element *, const G4Material *) override
void CrossSectionDescription(std::ostream &) const override
void AddUserThermalScatteringFile(const G4String &, const G4String &)
G4double GetCoherentCrossSection(const G4DynamicParticle *, const G4Element *, const G4Material *)
void DumpPhysicsTable(const G4ParticleDefinition &) override
G4double GetInelasticCrossSection(const G4DynamicParticle *, const G4Element *, const G4Material *)
void BuildPhysicsTable(const G4ParticleDefinition &) override
~G4ParticleHPThermalScatteringData() override
G4bool IsApplicable(const G4DynamicParticle *, const G4Element *)
G4VCrossSectionDataSet(const G4String &nam="")
void SetMaxKinEnergy(G4double value)
void SetMinKinEnergy(G4double value)