52 : zMin(minZ), zMax(maxZ)
54 LoadBiggsP(
"/doppler/p-biggs");
56 for (
G4int Z=zMin; Z<zMax+1; Z++)
58 LoadProfile(
"/doppler/profile",Z);
67 for (
auto& pos : profileMap)
80 if (Z>= zMin && Z <= zMax) n = nShells[Z-1];
88 if (Z < zMin || Z > zMax)
91 auto pos = profileMap.find(Z);
109 for (
G4int Z=zMin; Z<zMax; Z++)
118void G4DopplerProfile::LoadBiggsP(
const G4String& fileName)
120 std::ostringstream ost;
121 ost << fileName <<
".dat";
132 G4String pathString(path);
133 G4String dirFile = pathString +
name;
134 std::ifstream file(dirFile);
135 std::filebuf* lsdp = file.rdbuf();
137 if (! (lsdp->is_open()) )
139 G4String s1(
"data file: ");
140 G4String s2(
" not found");
141 G4String excep = s1 + dirFile + s2;
154 if (biggsP.size() != nBiggs)
161void G4DopplerProfile::LoadProfile(
const G4String& fileName,
G4int Z)
163 std::ostringstream ost;
164 ost << fileName <<
"-" << Z <<
".dat";
165 G4String
name(ost.str());
170 G4String excep(
"G4LEDATA environment variable not set");
176 G4String pathString(path);
177 G4String dirFile = pathString +
name;
178 std::ifstream file(dirFile);
179 std::filebuf* lsdp = file.rdbuf();
181 if (! (lsdp->is_open()) )
183 G4String s1(
"data file: ");
184 G4String s2(
" not found");
185 G4String excep = s1 + dirFile + s2;
194 G4VDataSetAlgorithm* interpolation =
new G4LogLogInterpolation;
195 G4VEMDataSet* dataSetForZ =
new G4CompositeEMDataSet(interpolation,1.,1.,1,1);
200 G4DataVector* profi =
new G4DataVector;
201 G4DataVector* biggs =
new G4DataVector;
204 for (
size_t i=0; i<nBiggs; i++)
208 biggs->push_back(biggsP[i]);
212 G4VDataSetAlgorithm* algo = interpolation->
Clone();
213 G4VEMDataSet* dataSet =
new G4EMDataSet(Z, biggs, profi, algo, 1., 1.,
true);
220 nShells.push_back(nShell);
222 profileMap[Z] = dataSetForZ;
const char * G4FindDataDir(const char *)
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
const G4VEMDataSet * Profiles(G4int Z) const
size_t NumberOfProfiles(G4int Z) const
G4DopplerProfile(G4int minZ=1, G4int maxZ=100)
const G4VEMDataSet * Profile(G4int Z, G4int ShellIndex) const
G4double RandomSelectMomentum(G4int Z, G4int shellIndex) const
virtual G4VDataSetAlgorithm * Clone() const =0
virtual const G4VEMDataSet * GetComponent(G4int componentId) const =0
virtual G4double RandomSelect(G4int componentId=0) const =0
virtual void AddComponent(G4VEMDataSet *dataSet)=0
virtual void PrintData(void) const =0
const char * name(G4int ptype)