81 G4cout <<
"The CALENDF probability tables are being initialized for Z=" <<
Z <<
" A=" <<
A <<
" and T=" <<
T <<
" K." <<
G4endl;
82 filename = std::to_string(
Z) +
"_" + std::to_string(
A);
83 if (
m != 0 )
filename +=
"_m" + std::to_string(
m);
85 std::istringstream theData( std::ios::in );
87 if ( theData.good() ) {
90 theData >> emin >> emax;
99 theInelasticData =
new std::vector< std::vector< G4double >* >;
101 G4double probability, total, elastic, capture, fission, inelastic;
103 theData >> emin >> emax >> tableOrder;
105 std::vector< G4double >* vecprob =
new std::vector< G4double >;
106 std::vector< G4double >* vecela =
new std::vector< G4double >;
107 std::vector< G4double >* veccap =
new std::vector< G4double >;
108 std::vector< G4double >* vecfiss =
new std::vector< G4double >;
109 std::vector< G4double >* vecinela =
new std::vector< G4double >;
110 for (
G4int j = 0; j < tableOrder; j++ ) {
111 theData >> probability >> total >> elastic >> capture >> fission >> inelastic;
112 vecprob->push_back( probability );
113 vecela->push_back( elastic * barn );
114 veccap->push_back( capture * barn );
115 vecfiss->push_back( fission * barn );
116 vecinela->push_back( inelastic * barn );
122 theInelasticData->push_back( vecinela );
124 G4cout <<
"Probability tables found and succesfully read from " <<
Emin / keV <<
" keV to " <<
Emax / keV <<
" keV." <<
G4endl;
126 G4cout <<
"No probability tables found for this isotope and temperature, smooth cross section will be used instead." <<
G4endl;
136 if ( MTnumber == 2 ) {
138 }
else if ( MTnumber == 102 ) {
140 }
else if ( MTnumber == 18 ) {
142 }
else if ( MTnumber == 3 ) {
143 return xsinela_cache[id];
147 if ( kineticEnergy < Emin || kineticEnergy >
Emax ) {
151 G4int n_isotopes = (
G4int)ele->GetNumberOfIsotopes();
152 for (
G4int j = 0; j < n_isotopes; j++ ) {
153 if (
A == (
G4int)( ele->GetIsotope(j)->GetN() ) ) {
158 G4double frac = ele->GetRelativeAbundanceVector()[isotopeJ];
173 xsinela_cache[id] = weightedinelasticXS / frac;
191 for ( indexP = 0; indexP < order; indexP++ ) {
192 if ( rand <= theProbability->at(indexP) )
break;
196 xsinela_cache[id] = theInelasticData->at(indexE)->at(indexP);
200 if ( MTnumber == 2 ) {
202 }
else if ( MTnumber == 102 ) {
204 }
else if ( MTnumber == 18 ) {
206 }
else if ( MTnumber == 3 ) {
207 return xsinela_cache[id];
209 G4cout <<
"Reaction was not found, returns 0." <<
G4endl;
216 const G4Element* ele,
G4double &kineticEnergy , std::map< std::thread::id, G4double > &random_number_cache, std::thread::id &
id ) {
218 if ( kineticEnergy < Emin || kineticEnergy >
Emax ) {
222 G4int n_isotopes = (
G4int)ele->GetNumberOfIsotopes();
223 for (
G4int j = 0; j < n_isotopes; j++ ) {
224 if (
A == (
G4int)ele->GetIsotope(j)->GetN() ) {
229 G4double frac = ele->GetRelativeAbundanceVector()[isotopeJ];
244 xsinela_cache[id] = weightedinelasticXS / frac;
261 random_number_cache[id] = rand;
263 for ( indexP = 0; indexP < order; indexP++ ) {
264 if ( rand <= theProbability->at(indexP) )
break;
268 xsinela_cache[id] = theInelasticData->at(indexE)->at(indexP);
274 }
else if (MTnumber == 102) {
276 }
else if (MTnumber == 18) {
278 }
else if (MTnumber == 3) {
279 return xsinela_cache[id];
281 G4cout <<
"Reaction was not found, returns 0." <<
G4endl;
G4ParticleDefinition * GetDefinition() const
G4double GetCorrelatedIsoCrossSectionPT(const G4DynamicParticle *, G4int, const G4Element *, G4double &, G4double &, std::thread::id &) override
G4double GetIsoCrossSectionPT(const G4DynamicParticle *, G4int, const G4Element *, G4double &, std::map< std::thread::id, G4double > &, std::thread::id &) override
void Init(G4int, G4int, G4int, G4double, const G4String &) override
G4ParticleHPVector * theEnergies
std::map< std::thread::id, G4double > xsela_cache
std::map< std::thread::id, G4double > xscap_cache
std::map< std::thread::id, G4double > energy_cache
G4double GetDopplerBroadenedFissionXS(const G4DynamicParticle *, G4int, G4int)
std::vector< std::vector< G4double > * > * theElasticData
std::vector< std::vector< G4double > * > * theFissionData
std::map< std::thread::id, G4double > xsfiss_cache
G4double GetDopplerBroadenedInelasticXS(const G4DynamicParticle *, G4int, G4int)
std::vector< std::vector< G4double > * > * theCaptureData
G4double GetDopplerBroadenedCaptureXS(const G4DynamicParticle *, G4int, G4int)
G4double GetDopplerBroadenedElasticXS(const G4DynamicParticle *, G4int, G4int)
std::vector< std::vector< G4double > * > * theProbabilities
std::vector< G4ParticleHPChannel * > * GetFissionFinalStates() const
std::vector< G4ParticleHPChannel * > * GetElasticFinalStates() const
std::vector< G4ParticleHPChannel * > * GetCaptureFinalStates() const
void GetDataStream(const G4String &, std::istringstream &iss)
std::vector< G4ParticleHPChannelList * > * GetInelasticFinalStates(const G4ParticleDefinition *part) const
static G4ParticleHPManager * GetInstance()