73{
74 G4int Z = std::min(ZZ, Zmax);
75 auto v = fData->GetElementData(Z);
76 if (nullptr == v) {
78 v = fData->GetElementData(Z);
79 if (nullptr == v) {
80 v = new G4PhysicsFreeVector(false);
81 std::ostringstream ost;
82 ost << fParameters->GetDirLEDATA() << fSubName << Z << ".dat";
83 std::ifstream fin(ost.str().c_str());
84 if (!fin.is_open()) {
86 ed << "G4EmElementXS: data file <" << ost.str().c_str() << "> for Z=" << Z
87 <<
" is not opened!" <<
G4endl;
89 "G4LEDATA version should be checked");
90 } else {
91 v->Retrieve(fin, true);
92 v->ScaleVector(CLHEP::MeV, CLHEP::barn);
93 }
94 fData->InitialiseForElement(Z, v);
95 l.unlock();
96 }
97 }
98 return v;
99}
G4TemplateAutoLock< G4Mutex > G4AutoLock
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription