67{
68
69 G4String aString = "FF";
70
71 G4String tString = dirName;
73 G4ParticleHPDataUsed aFile =
75 G4String filename = aFile.
GetName();
78
79
80 if (!dbool || (Z < 2.5 && (std::abs(
theBaseZ - Z) > 0.0001 || std::abs(
theBaseA -
A) > 0.0001))) {
84 return;
85 }
86
87 std::istringstream theData(std::ios::in);
90 if (!theData) {
91
95 return;
96 }
97
99
100
101 while (theData.good())
102 {
105
106
107 theData >> iMT >> iMF >> dummy;
108
109 theData >> imax;
110
111
112 auto mEnergyFSPData = new std::map<G4double, std::map<G4int, G4double>*>;
113
114 auto mInterporation = new std::map<G4double, G4int>;
115 for (
G4int i = 0; i <= imax; i++) {
120
121 theData >> Ei;
122
123 theData >> jmax;
124
125 theData >> ip;
126 mInterporation->insert(std::pair<G4double, G4int>(Ei * eV, ip));
127
128 auto mFSPYieldData = new std::map<G4int, G4double>;
129 for (
G4int j = 0; j < jmax; j++) {
133 theData >> FSP >> mFSP >>
Y;
134 G4int k = FSP * 100 + mFSP;
136
137
138 mFSPYieldData->insert(std::pair<G4int, G4double>(k, YY));
139 }
140 mEnergyFSPData->insert(
141 std::pair<
G4double, std::map<G4int, G4double>*>(Ei * eV, mFSPYieldData));
142 }
143
144 FissionProductYieldData.insert(
145 std::pair<
G4int, std::map<
G4double, std::map<G4int, G4double>*>*>(iMT, mEnergyFSPData));
146 mMTInterpolation.insert(std::pair<
G4int, std::map<G4double, G4int>*>(iMT, mInterporation));
147 }
148
149}
G4double Y(G4double density)
const G4String & GetName() const
G4ParticleHPNames theNames
void GetDataStream(const G4String &, std::istringstream &iss)
static G4ParticleHPManager * GetInstance()