162{
163 if (mean_life_threshold < minimum_mean_life_threshold) {
164
166
167 if (path == nullptr) {
169 "G4ENSDFSTATEDATA environment variable must be set");
170 return;
171 }
172
173 std::ifstream ifs;
174 G4String filename(path);
175 filename += "/ENSDFSTATE.dat";
176
177 ifs.open(filename.c_str());
178 if (!ifs.good()) {
180 return;
181 }
182
188 G4String ionFL;
192
193
194 ifs >> ionZ >> ionA >> ionE >> ionFL >> ionLife >> ionJ >> ionMu;
195
196 while (ifs.good())
197 {
198 if (ionCode != 1000 * ionZ + ionA) {
199 iLevel = 0;
200 ionCode = 1000 * ionZ + ionA;
201 }
202
203 ionE *= keV;
206 ionMu *= (joule / tesla);
207
209 || (mean_life_threshold <= ionLife && ionLife < minimum_mean_life_threshold))
210 {
211 if (ionE > 0) ++iLevel;
212 if (iLevel > 9) iLevel = 9;
213
214 auto fProperty = new G4IsotopeProperty();
215
216
217 fProperty->SetAtomicNumber(ionZ);
218 fProperty->SetAtomicMass(ionA);
219 fProperty->SetIsomerLevel(iLevel);
220 fProperty->SetEnergy(ionE);
221 fProperty->SetiSpin(ionJ);
222 fProperty->SetLifeTime(ionLife);
223 fProperty->SetDecayTable(nullptr);
224 fProperty->SetMagneticMoment(ionMu);
225 fProperty->SetFloatLevelBase(flb);
226
227 fIsotopeList->push_back(fProperty);
228
229 auto itf = map_full_list.find(ionCode);
230 if (itf == map_full_list.cend()) {
231 std::multimap<G4double, G4IsotopeProperty*> aMultiMap;
232 itf = (map_full_list.insert(std::pair<
G4int, std::multimap<G4double, G4IsotopeProperty*>>(
233 ionCode, aMultiMap)))
234 .first;
235 }
236 itf->second.insert(std::pair<G4double, G4IsotopeProperty*>(ionE, fProperty));
237 }
238
239 ifs >> ionZ >> ionA >> ionE >> ionFL >> ionLife >> ionJ >> ionMu;
240 }
241
242 minimum_mean_life_threshold = mean_life_threshold;
243 }
244
245
246 for (auto& it : map_pre_load_list) {
247 it.second.clear();
248 }
249 map_pre_load_list.clear();
250
251
252 for (const auto& it : map_full_list) {
253 G4int ionCode = it.first;
254 auto itf = map_pre_load_list.find(ionCode);
255 if (itf == map_pre_load_list.cend()) {
256 std::multimap<G4double, G4IsotopeProperty*> aMultiMap;
257 itf = (map_pre_load_list.insert(
258 std::pair<
G4int, std::multimap<G4double, G4IsotopeProperty*>>(ionCode, aMultiMap)))
259 .first;
260 }
261
263 for (const auto& itt : it.second) {
265 G4double meanLife = itt.second->GetLifeTime();
266 if (exEnergy == 0.0 || meanLife > mean_life_threshold) {
267 if (itt.first != 0.0) ++iLevel;
268 if (iLevel > 9) iLevel = 9;
269 itt.second->SetIsomerLevel(iLevel);
270 itf->second.insert(std::pair<G4double, G4IsotopeProperty*>(exEnergy, itt.second));
271 }
272 }
273 }
274}
const char * G4FindDataDir(const char *)
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)