45 theNDistributions = 0;
49 if ((fp=fopen(fileName.c_str(),
"r"))==
nullptr)
61 (void) fscanf(fp,
"%i \n",&nEnergies);
62 for(
G4int ie = 0; ie < nEnergies; ++ie )
65 (void) fscanf(fp,
"%f \n",&energySep);
66 (void) fscanf(fp,
"%i \n",&nAngles);
67 for(
G4int ia = 0; ia < nAngles; ++ia )
70 (void) fscanf(fp,
"%f \n",&angleSep);
73 std::map<G4double, G4LEPTSDistribution *> angleDist;
74 angleDist[angleSep] = dist;
75 theDistributions[energySep] = std::move(angleDist);
77 (void) fscanf(fp,
"%i \n",&nData);
78 if( dist->ReadFile( fp, nData ) )
80 std::ostringstream message;
81 message <<
"End of file found while reading file: "
83 G4Exception(
"G4LEPTSElossDistr::ReadFile()",
"ReadError",
96 if( eMin > eMax)
return 0.0;
100 if( theNDistributions == 1 )
102 distr = (*( (*(theDistributions.cbegin())).second ).cbegin()).second;
106 for(
auto itedd = theDistributions.cbegin(); itedd != theDistributions.cend(); ++itedd ){
107 G4double energySep = (*itedd).first;
108 if( eMax < energySep )
110 const auto& dist1 = (*itedd).second;
111 for(
auto ited = dist1.cbegin(); ited != dist1.cend(); ++ited )
116 distr = (*ited).second;
125 return (
nullptr != distr) ? distr->
Sample(eMin, eMax) : 0.0;