Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4ParticleHPProbabilityTablesStore Class Reference

#include <G4ParticleHPProbabilityTablesStore.hh>

Public Member Functions

void Init ()
 
void InitURRlimits ()
 
std::vector< std::map< G4int, G4ParticleHPIsoProbabilityTable * > > * GetProbabilityTables ()
 
std::vector< std::pair< G4double, G4double > > * GetURRlimits ()
 
G4double GetIsoCrossSectionPT (const G4DynamicParticle *, G4int, const G4Isotope *, const G4Element *, const G4Material *)
 

Static Public Member Functions

static G4ParticleHPProbabilityTablesStoreGetInstance ()
 

Public Attributes

std::vector< std::map< std::thread::id, G4double > > random_number_cache
 

Detailed Description

Definition at line 61 of file G4ParticleHPProbabilityTablesStore.hh.

Member Function Documentation

◆ GetInstance()

◆ GetIsoCrossSectionPT()

G4double G4ParticleHPProbabilityTablesStore::GetIsoCrossSectionPT ( const G4DynamicParticle * dp,
G4int MTnumber,
const G4Isotope * iso,
const G4Element * ele,
const G4Material * mat )

Definition at line 146 of file G4ParticleHPProbabilityTablesStore.cc.

147 {
148 G4double kineticEnergy = dp->GetKineticEnergy();
149 std::size_t indexI = iso->GetIndex();
150 G4int T = (G4int)( mat->GetTemperature() );
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 );
154 } else {
155 energy_cache[indexI][id] = kineticEnergy;
156 return (*ProbabilityTables)[iso->GetIndex()][T]->GetIsoCrossSectionPT( dp, MTnumber, ele, kineticEnergy, random_number_cache[indexI], id );
157 }
158}
double G4double
Definition G4Types.hh:83
int G4int
Definition G4Types.hh:85
G4double GetKineticEnergy() const
std::size_t GetIndex() const
Definition G4Isotope.hh:97
G4double GetTemperature() const
std::vector< std::map< std::thread::id, G4double > > random_number_cache

Referenced by G4ParticleHPCaptureDataPT::GetIsoCrossSection(), G4ParticleHPElasticDataPT::GetIsoCrossSection(), G4ParticleHPFissionDataPT::GetIsoCrossSection(), and G4ParticleHPInelasticDataPT::GetIsoCrossSection().

◆ GetProbabilityTables()

std::vector< std::map< G4int, G4ParticleHPIsoProbabilityTable * > > * G4ParticleHPProbabilityTablesStore::GetProbabilityTables ( )
inline

Definition at line 68 of file G4ParticleHPProbabilityTablesStore.hh.

68{ return ProbabilityTables; };

◆ GetURRlimits()

◆ Init()

void G4ParticleHPProbabilityTablesStore::Init ( )

Definition at line 161 of file G4ParticleHPProbabilityTablesStore.cc.

161 {
162 ProbabilityTables = new std::vector< std::map< G4int, G4ParticleHPIsoProbabilityTable* > >;
163 for ( G4int i = 0; i < numIso; i++ ) {
164 G4int Z = (*(G4Isotope::GetIsotopeTable()))[i]->GetZ();
165 G4int A = (*(G4Isotope::GetIsotopeTable()))[i]->GetN();
166 G4int meso = (*(G4Isotope::GetIsotopeTable()))[i]->Getm();
167 std::map< G4int, G4ParticleHPIsoProbabilityTable* > tempPTmap;
168 for ( G4int T : (*Temperatures)[i] ) { // create probability table for each temperature and isotope
169 if ( usedNjoy ) {
170 tempPTmap.insert( { T, new G4ParticleHPIsoProbabilityTable_NJOY } );
171 } else if ( usedCalendf ) {
172 tempPTmap.insert( { T, new G4ParticleHPIsoProbabilityTable_CALENDF } );
173 }
174 tempPTmap[T]->Init( Z, A, meso, T, dirName );
175 }
176 ProbabilityTables->push_back( std::move(tempPTmap) );
177 }
178}
const G4double A[17]
static const G4IsotopeTable * GetIsotopeTable()
Definition G4Isotope.cc:128

Referenced by G4ParticleHPCaptureDataPT::BuildPhysicsTable(), G4ParticleHPElasticDataPT::BuildPhysicsTable(), G4ParticleHPFissionDataPT::BuildPhysicsTable(), and G4ParticleHPInelasticDataPT::BuildPhysicsTable().

◆ InitURRlimits()

void G4ParticleHPProbabilityTablesStore::InitURRlimits ( )

Definition at line 181 of file G4ParticleHPProbabilityTablesStore.cc.

181 {
182 URRlimits = new std::vector< std::pair< G4double, G4double > >;
183 // Find energy limits of the URR for each element.
184 std::vector< G4bool > wasnotprintedyet( numIso, true );
185 for ( std::size_t i = 0; i < G4Element::GetNumberOfElements(); ++i ) {
186 G4double minE = DBL_MAX;
187 G4double maxE = 0.0;
188 for ( G4int ii = 0; ii < (G4int)(*(G4Element::GetElementTable()))[i]->GetNumberOfIsotopes(); ++ii ) {
189 G4int Z = (*(G4Element::GetElementTable()))[i]->GetIsotope(ii)->GetZ();
190 G4int A = (*(G4Element::GetElementTable()))[i]->GetIsotope(ii)->GetN();
191 G4int meso = (*(G4Element::GetElementTable()))[i]->GetIsotope(ii)->Getm();
192 std::size_t indexI = (*(G4Element::GetElementTable()))[i]->GetIsotope(ii)->GetIndex();
193 filename = std::to_string(Z) + "_" + std::to_string(A);
194 if ( meso != 0 ) filename += "_m" + std::to_string(meso);
195 G4double emin = DBL_MAX;
196 G4double emax = 0.0;
197 G4double emin2 = DBL_MAX;
198 G4double emax2 = 0.0;
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 );
204 G4ParticleHPManager::GetInstance()->GetDataStream( fullPathFileName, theData );
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.";
212 G4Exception( "G4ParticleHPProbabilityTablesStore::InitURRlimits()", "hadhp01", JustWarning, message );
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;
216 }
217 } else if ( theData.good() ) {
218 theData >> emin >> emax;
219 if ( emin < minE ) minE = emin;
220 if ( emax > maxE ) maxE = emax;
221 hasalreadyPT = true;
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.";
226 G4Exception( "G4ParticleHPProbabilityTablesStore::InitURRlimits()", "hadhp01", JustWarning, message );
227 wasnotprintedyet[indexI] = false;
228 }
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.";
233 G4Exception( "G4ParticleHPProbabilityTablesStore::InitURRlimits()", "hadhp01", JustWarning, message );
234 wasnotprintedyet[indexI] = false;
235 } else {
236 doesnothavePTyet = true;
237 }
238 }
239 }
240 std::pair< G4double, G4double > simplepair( minE * eV, maxE * eV );
241 URRlimits->push_back( simplepair );
242 }
243 // Find absolute energy limits of the URR and set them at the end of URRlimits.
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;
249 }
250 std::pair< G4double, G4double > minmaxpair( absminE, absmaxE );
251 URRlimits->push_back( minmaxpair );
252}
@ JustWarning
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
bool G4bool
Definition G4Types.hh:86
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout
static std::size_t GetNumberOfElements()
Definition G4Element.cc:408
static const G4ElementTable * GetElementTable()
Definition G4Element.cc:401
void GetDataStream(const G4String &, std::istringstream &iss)
static G4ParticleHPManager * GetInstance()
#define DBL_MAX
Definition templates.hh:62

Referenced by G4ParticleHPCaptureDataPT::BuildPhysicsTable(), G4ParticleHPCaptureURR::BuildPhysicsTable(), G4ParticleHPElasticDataPT::BuildPhysicsTable(), G4ParticleHPElasticURR::BuildPhysicsTable(), G4ParticleHPFissionDataPT::BuildPhysicsTable(), G4ParticleHPFissionURR::BuildPhysicsTable(), G4ParticleHPInelasticDataPT::BuildPhysicsTable(), and G4ParticleHPInelasticURR::BuildPhysicsTable().

Member Data Documentation

◆ random_number_cache

std::vector< std::map< std::thread::id, G4double > > G4ParticleHPProbabilityTablesStore::random_number_cache

Definition at line 72 of file G4ParticleHPProbabilityTablesStore.hh.

Referenced by GetIsoCrossSectionPT().


The documentation for this class was generated from the following files: