67G4ParticleHPProbabilityTablesStore::G4ParticleHPProbabilityTablesStore() :
68 Temperatures(0), ProbabilityTables(0), URRlimits(0), usedNjoy(0), usedCalendf(0) {
72 G4Exception(
"G4ParticleHPProbabilityTablesStore::G4ParticleHPProbabilityTablesStore()",
"hadhp01",
79 dirName +=
"/calendf/";
82 G4Exception(
"G4ParticleHPProbabilityTablesStore::G4ParticleHPProbabilityTablesStore()",
"hadhp01",
83 FatalException,
"The format of probability tables is not set properly, "
84 "please set it with G4HadronicParameters::Instance()->SetTypeTablePT() before initialization in your main." );
90 Temperatures =
new std::vector< std::vector< G4int > >;
91 for (
G4int i = 0; i < numIso; ++i ) {
92 std::vector< G4int > isotemperatures;
93 std::map< std::thread::id, G4double > simpleMapE;
94 std::map< std::thread::id, G4double > simpleMapRN;
95 Temperatures->push_back( std::move(isotemperatures) );
96 energy_cache.push_back( std::move(simpleMapE) );
97 random_number_cache.push_back( std::move(simpleMapRN) );
100 std::vector< G4bool > isoinmat( numIso,
false );
106 std::vector< G4int > isotemperatures = (*Temperatures)[indexI];
107 if ( std::find( isotemperatures.begin(), isotemperatures.end(), Temp ) == isotemperatures.end() ) {
108 (*Temperatures)[indexI].push_back( Temp );
109 isoinmat[indexI] =
true;
111 if ( isoinmat[indexI] ) {
115 <<
" is more times in material " << theMaterial->
GetName() <<
".\n"
116 <<
"This may cause bias in selection of target isotopes, if there are elements with different URR limits in the material.\n"
117 <<
"Please make materials only with elements with different Z.";
127G4ParticleHPProbabilityTablesStore::~G4ParticleHPProbabilityTablesStore() {
128 for (
G4int i = 0; i < numIso; i++ ) {
129 for ( std::map< G4int, G4ParticleHPIsoProbabilityTable* >::iterator it = (*ProbabilityTables)[i].begin();
130 it != (*ProbabilityTables)[i].end(); ++it ) {
134 delete ProbabilityTables;
141 if ( instance ==
nullptr ) instance =
new G4ParticleHPProbabilityTablesStore;
149 std::size_t indexI = iso->
GetIndex();
151 std::thread::id
id = std::this_thread::get_id();
152 if ( energy_cache[indexI][
id] == kineticEnergy ) {
153 return (*ProbabilityTables)[indexI][T]->GetCorrelatedIsoCrossSectionPT( dp, MTnumber, ele, kineticEnergy,
random_number_cache[indexI][
id],
id );
155 energy_cache[indexI][id] = kineticEnergy;
156 return (*ProbabilityTables)[iso->
GetIndex()][T]->GetIsoCrossSectionPT( dp, MTnumber, ele, kineticEnergy,
random_number_cache[indexI],
id );
162 ProbabilityTables =
new std::vector< std::map< G4int, G4ParticleHPIsoProbabilityTable* > >;
163 for (
G4int i = 0; i < numIso; i++ ) {
167 std::map< G4int, G4ParticleHPIsoProbabilityTable* > tempPTmap;
168 for (
G4int T : (*Temperatures)[i] ) {
171 }
else if ( usedCalendf ) {
174 tempPTmap[T]->Init( Z,
A, meso, T, dirName );
176 ProbabilityTables->push_back( std::move(tempPTmap) );
182 URRlimits =
new std::vector< std::pair< G4double, G4double > >;
184 std::vector< G4bool > wasnotprintedyet( numIso,
true );
193 filename = std::to_string(Z) +
"_" + std::to_string(
A);
194 if ( meso != 0 ) filename +=
"_m" + std::to_string(meso);
199 G4bool hasalreadyPT =
false;
200 G4bool doesnothavePTyet =
false;
201 for (
G4int T : (*Temperatures)[indexI] ) {
202 G4String fullPathFileName = dirName + filename +
"." + std::to_string(T) +
".pt";
203 std::istringstream theData( std::ios::in );
205 if ( theData.good() && hasalreadyPT ) {
206 theData >> emin2 >> emax2;
207 if ( emin2 != emin || emax2 != emax ) {
209 message <<
"There is mismatch between limits of unresolved resonance region for isotope " <<
"\n"
210 <<
"with Z=" << Z <<
" and A=" <<
A <<
" for different temperatures, which should not happen, CHECK YOUR DATA!" <<
"\n"
211 <<
"The broadest limits will be used.";
213 G4cout <<
"Temperature T= " << T <<
" emin=" << emin <<
" emax=" << emax <<
" minE=" << minE <<
" maxE=" << maxE <<
G4endl;
214 if ( emin < minE ) minE = emin;
215 if ( emax > maxE ) maxE = emax;
217 }
else if ( theData.good() ) {
218 theData >> emin >> emax;
219 if ( emin < minE ) minE = emin;
220 if ( emax > maxE ) maxE = emax;
222 if ( doesnothavePTyet && wasnotprintedyet[indexI] ) {
224 message <<
"There are probability tables only for some of the used temperatures for isotope with Z=" << Z <<
" and A=" <<
A <<
".\n"
225 <<
"Smooth cross section will be used for other temperature(s) of this isotope, which may cause severe differences in simulation.";
227 wasnotprintedyet[indexI] =
false;
229 }
else if ( hasalreadyPT && wasnotprintedyet[indexI] ) {
231 message <<
"There are probability tables only for some of the used temperatures for isotope with Z=" << Z <<
" and A=" <<
A <<
".\n"
232 <<
"Smooth cross section will be used for other temperature(s) of this isotope, which may cause severe differences in simulation.";
234 wasnotprintedyet[indexI] =
false;
236 doesnothavePTyet =
true;
240 std::pair< G4double, G4double > simplepair( minE * eV, maxE * eV );
241 URRlimits->push_back( simplepair );
244 G4double absminE = (*URRlimits)[0].first;
245 G4double absmaxE = (*URRlimits)[0].second;
246 for (
auto iterator : (*URRlimits) ) {
247 if ( iterator.first < absminE ) absminE = iterator.first;
248 if ( iterator.second > absmaxE ) absmaxE = iterator.second;
250 std::pair< G4double, G4double > minmaxpair( absminE, absmaxE );
251 URRlimits->push_back( minmaxpair );
const char * G4FindDataDir(const char *)
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
G4GLOB_DLL std::ostream G4cout
G4double GetKineticEnergy() const
static std::size_t GetNumberOfElements()
const G4Isotope * GetIsotope(G4int iso) const
static const G4ElementTable * GetElementTable()
static G4HadronicParameters * Instance()
static const G4IsotopeTable * GetIsotopeTable()
std::size_t GetIndex() const
static std::size_t GetNumberOfIsotopes()
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
void GetDataStream(const G4String &, std::istringstream &iss)
static G4ParticleHPManager * GetInstance()
static G4ParticleHPProbabilityTablesStore * GetInstance()
std::vector< std::map< std::thread::id, G4double > > random_number_cache
G4double GetIsoCrossSectionPT(const G4DynamicParticle *, G4int, const G4Isotope *, const G4Element *, const G4Material *)