56 : zMin(minZ), zMax(maxZ)
60 LoadBiggsP(
"/doppler/p-biggs");
64 LoadProfile(
"/doppler/profile",
Z);
71 std::map<G4int,G4VEMDataSet*,std::less<G4int> >::iterator pos;
72 for (pos = profileMap.begin(); pos != profileMap.end(); ++pos)
84 if (Z>= zMin && Z <= zMax) n = nShells[Z-1];
91 std::map<G4int,G4VEMDataSet*,std::less<G4int> >::const_iterator pos;
92 if (Z < zMin || Z > zMax)
95 pos = profileMap.find(Z);
119 void G4DopplerProfile::LoadBiggsP(
const G4String& fileName)
121 std::ostringstream ost;
122 ost << fileName <<
".dat";
125 char* path = getenv(
"G4LEDATA");
135 std::ifstream
file(dirFile);
136 std::filebuf* lsdp =
file.rdbuf();
138 if (! (lsdp->is_open()) )
155 if (biggsP.size() != nBiggs)
161 void G4DopplerProfile::LoadProfile(
const G4String& fileName,
G4int Z)
163 std::ostringstream ost;
164 ost << fileName <<
"-" << Z <<
".dat";
167 char* path = getenv(
"G4LEDATA");
170 G4String excep(
"G4LEDATA environment variable not set");
178 std::ifstream
file(dirFile);
179 std::filebuf* lsdp =
file.rdbuf();
181 if (! (lsdp->is_open()) )
204 for (
size_t i=0; i<nBiggs; i++)
208 biggs->push_back(biggsP[i]);
221 nShells.push_back(nShell);
223 profileMap[
Z] = dataSetForZ;