162{
164 throw G4HadronicException(__FILE__, __LINE__,
165 "Attempt to use NeutronHP data for particles other than neutrons!!!");
166
167
168
169 dic.clear();
171
172 std::map<G4String, G4int> co_dic;
173
174
178 for (std::size_t i = 0; i < numberOfMaterials; ++i) {
179 G4Material* material = (*theMaterialTable)[i];
181 for (
G4int j = 0; j < numberOfElements; ++j) {
182 const G4Element* element = material->
GetElement(j);
183 if (names->IsThisThermalElement(material->
GetName(), element->
GetName())) {
184 G4int ts_ID_of_this_geometry;
185 G4String ts_ndl_name = names->GetTS_NDL_Name(material->
GetName(), element->
GetName());
186 if (co_dic.find(ts_ndl_name) != co_dic.cend()) {
187 ts_ID_of_this_geometry = co_dic.find(ts_ndl_name)->second;
188 }
189 else {
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));
192 }
193
194 dic.insert(std::pair<std::pair<G4Material*, const G4Element*>,
G4int>(
195 std::pair<G4Material*, const G4Element*>(material, element), ts_ID_of_this_geometry));
196 }
197 }
198 }
199
200
203
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;
209 G4String ts_ndl_name = names->GetTS_NDL_Name(element->
GetName());
210 if (co_dic.find(ts_ndl_name) != co_dic.cend()) {
211 ts_ID_of_this_geometry = co_dic.find(ts_ndl_name)->second;
212 }
213 else {
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));
216 }
217
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));
221 }
222 }
223 }
224
226 G4cout <<
"Neutron HP Thermal Scattering Data: Following material-element pairs and/or elements "
227 "are registered."
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
234 }
235 else {
236 G4cout <<
"Element " << it.first.second->GetName() <<
", internal thermal scattering id "
238 }
239 }
241
243
247
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*>*>;
255
256
257
258 G4String dirName;
260 throw G4HadronicException(
261 __FILE__, __LINE__,
262 "Please setenv G4NEUTRONHPDATA to point to the neutron cross-section files.");
264
265 dirName = baseName + "/ThermalScattering";
266
267 G4String ndl_filename;
268 G4String full_name;
269
270 for (const auto& it : co_dic) {
271 ndl_filename = it.first;
272 G4int ts_ID = it.second;
273
274
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));
279
280
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));
285
286
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));
291 }
295 }
296}
const char * G4FindDataDir(const char *)
std::vector< G4Material * > G4MaterialTable
G4GLOB_DLL std::ostream G4cout
static std::size_t GetNumberOfElements()
const G4String & GetName() const
static const G4ElementTable * GetElementTable()
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
static G4ParticleHPManager * GetInstance()
void RegisterThermalScatteringInelasticCrossSections(std::map< G4int, std::map< G4double, G4ParticleHPVector * > * > *val)
std::map< G4int, std::map< G4double, G4ParticleHPVector * > * > * GetThermalScatteringIncoherentCrossSections() const