64G4double G4GammaNuclearXS::coeff[3][3];
65G4double G4GammaNuclearXS::xs150[] = {0.0};
66const G4int G4GammaNuclearXS::freeVectorException[] = {
674, 6, 7, 8, 27, 39, 45, 65, 67, 69, 73};
68G4String G4GammaNuclearXS::gDataDirectory =
"";
73 const G4double eTransitionBound = 150.*CLHEP::MeV;
75 const G4double ehigh = 10*CLHEP::GeV;
83 G4cout <<
"G4GammaNuclearXS::G4GammaNuclearXS Initialise for Z < "
88 if (ggXsection ==
nullptr) {
94 if (
nullptr == data) {
96 data->SetName(
"gNuclear");
97 for (
G4int Z=1; Z<MAXZGAMMAXS; ++Z) {
105 outFile <<
"G4GammaNuclearXS calculates the gamma nuclear\n"
106 <<
"cross-section for GDR energy region on nuclei using "
107 <<
"data from the high precision\n"
108 <<
"IAEA photonuclear database (2019). Then liniear connection\n"
109 <<
"implemented with previous CHIPS photonuclear model." <<
G4endl;
137 const G4int Z = (ZZ < MAXZGAMMAXS) ? ZZ : MAXZGAMMAXS - 1;
138 if(Z == fZ && ekin == fEkin) {
return fXS; }
142 auto pv = data->GetElementData(Z);
143 const G4double limCHIPS1 = 25*CLHEP::MeV;
144 const G4double limCHIPS2 = 16*CLHEP::MeV;
145 if (pv ==
nullptr || 1 == Z || Z == 40 || Z == 74 ||
146 (Z == 24 && ekin >= limCHIPS1) ||
147 (Z == 39 && ekin >= limCHIPS1) ||
148 (Z == 50 && ekin >= limCHIPS2) ||
149 (Z == 64 && ekin >= limCHIPS2)
151 fXS = ggXsection->ComputeElementXSection(ekin, Z);
154 const G4double emax = pv->GetMaxEnergy();
158 fXS = pv->Value(ekin);
160 }
else if(ekin >= eTransitionBound) {
161 fXS = ggXsection->ComputeElementXSection(ekin, Z);
165 const G4double lxs = pv->Value(emax);
166 fXS = lxs + (ekin - emax)*(rxs - lxs)/(eTransitionBound - emax);
171 G4cout <<
"Z= " << Z <<
" Ekin(MeV)= " << ekin/CLHEP::MeV
172 <<
", nElmXS(b)= " << fXS/CLHEP::barn
181 const G4int Z = (ZZ < MAXZGAMMAXS) ? ZZ : MAXZGAMMAXS - 1;
182 auto pv = data->GetElementData(Z);
183 return pv->Value(ekin);
197 const G4int Z = (ZZ < MAXZGAMMAXS) ? ZZ : MAXZGAMMAXS - 1;
205 if(ekin >= ehigh && AA >=0 && AA <=2) {
208 xs = ggXsection->ComputeIsoXSection(ekin, Z,
A);
214 G4cout <<
"G4GammaNuclearXS::IsoXS: Z= " << Z <<
" A= " <<
A
215 <<
" Ekin(MeV)= " << ekin/CLHEP::MeV
216 <<
", ElmXS(b)= " << xs/CLHEP::barn <<
G4endl;
228 if(1 == nIso) {
return iso; }
235 std::size_t nn = temp.size();
236 if(nn < nIso) { temp.resize(nIso, 0.); }
238 for (std::size_t j=0; j<nIso; ++j) {
241 sum += abundVector[j]*
246 for (std::size_t j = 0; j<nIso; ++j) {
258 G4cout <<
"G4GammaNuclearXS::BuildPhysicsTable for "
264 <<
" only gamma is allowed";
265 G4Exception(
"G4GammaNuclearXS::BuildPhysicsTable(..)",
"had012",
272 std::size_t nIso = temp.size();
273 for (
auto const & elm : *table ) {
274 std::size_t n = elm->GetNumberOfIsotopes();
275 if (n > nIso) { nIso = n; }
277 temp.resize(nIso, 0.0);
280const G4String& G4GammaNuclearXS::FindDirectoryPath()
283 if(gDataDirectory.empty()) {
284 std::ostringstream ost;
286 gDataDirectory = ost.str();
288 return gDataDirectory;
291void G4GammaNuclearXS::Initialise(
G4int Z)
294 std::ostringstream ost;
295 ost << FindDirectoryPath() << Z ;
296 G4PhysicsVector* v = RetrieveVector(ost,
true, Z);
298 data->InitialiseForElement(Z, v);
304 xs150[Z] = ggXsection->ComputeElementXSection(eTransitionBound, Z);
308 if(amax[Z] > amin[Z]) {
309 for(
G4int A=amin[Z];
A<=amax[Z]; ++
A) {
311 if(AA >= 0 && AA <= 2) {
312 G4double sig1 = ggXsection->ComputeIsoXSection(ehigh, Z,
A);
313 G4double sig2 = ggXsection->ComputeElementXSection(ehigh, Z);
314 if(sig2 > 0.) { coeff[Z][AA] = (sig1/sig2); }
315 else { coeff[Z][AA] = 1.; }
323G4GammaNuclearXS::RetrieveVector(std::ostringstream& ost,
G4bool warn,
G4int Z)
325 G4PhysicsVector* v =
nullptr;
327 std::ifstream filein(ost.str().c_str());
328 if (!filein.is_open()) {
331 ed <<
"Data file <" << ost.str().c_str()
332 <<
"> is not opened!";
333 G4Exception(
"G4GammaNuclearXS::RetrieveVector(..)",
"had014",
338 G4cout <<
"File " << ost.str()
339 <<
" is opened by G4GammaNuclearXS" <<
G4endl;
342 if(std::find(std::begin(freeVectorException), std::end(freeVectorException), Z)
343 == std::end(freeVectorException)) {
344 v =
new G4PhysicsLinearVector(
false);
346 v =
new G4PhysicsFreeVector(
false);
350 ed <<
"Data file <" << ost.str().c_str()
351 <<
"> is not retrieved!";
352 G4Exception(
"G4GammaNuclearXS::RetrieveVector(..)",
"had015",
std::vector< G4Element * > G4ElementTable
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
G4GLOB_DLL std::ostream G4cout
G4VCrossSectionDataSet * GetCrossSectionDataSet(const G4String &name, G4bool warning=false)
static G4CrossSectionDataSetRegistry * Instance()
G4double GetKineticEnergy() const
G4double * GetRelativeAbundanceVector() const
std::size_t GetNumberOfIsotopes() const
const G4Isotope * GetIsotope(G4int iso) const
static const G4ElementTable * GetElementTable()
G4double GetIsoCrossSection(const G4DynamicParticle *, G4int Z, G4int A, const G4Isotope *iso=nullptr, const G4Element *elm=nullptr, const G4Material *mat=nullptr) final
static const char * Default_Name()
void BuildPhysicsTable(const G4ParticleDefinition &) final
G4double LowEnergyCrossSection(G4double ekin, G4int Z)
G4bool IsIsoApplicable(const G4DynamicParticle *, G4int Z, G4int A, const G4Element *, const G4Material *mat) final
G4double GetElementCrossSection(const G4DynamicParticle *, G4int Z, const G4Material *mat=nullptr) final
G4double ElementCrossSection(const G4double ekin, const G4int Z)
void CrossSectionDescription(std::ostream &) const final
const G4Isotope * SelectIsotope(const G4Element *, G4double kinEnergy, G4double logE) final
G4bool IsElementApplicable(const G4DynamicParticle *, G4int Z, const G4Material *) final
G4double IsoCrossSection(const G4double ekin, const G4int Z, const G4int A)
static G4HadronicParameters * Instance()
const G4String & GetDirPARTICLEXS() const
const G4String & GetParticleName() const
G4bool Retrieve(std::ifstream &fIn, G4bool ascii=false)
G4VCrossSectionDataSet(const G4String &nam="")
void SetForAllAtomsAndEnergies(G4bool val)