56 inline void Init(std::istream& theData)
override
59 theFractionalProb.Init(theData, CLHEP::eV);
61 const std::size_t dsize = nDistFunc > 0 ? nDistFunc : 1;
63 theManager.
Init(theData);
65 for (i = 0; i < dsize; ++i) {
66 theData >> currentEnergy;
67 theDistFunc[i].SetLabel(currentEnergy * CLHEP::eV);
68 theDistFunc[i].Init(theData, CLHEP::eV);
69 theDistFunc[i].IntegrateAndNormalise();
80 for (i = 0; i < dsize; ++i) {
81 G4int np = theDistFunc[i].GetVectorLength();
82 theLowThreshold[i] = theDistFunc[i].GetEnergy(0);
83 theHighThreshold[i] = theDistFunc[i].GetEnergy(np - 1);
84 for (
G4int j = 0; j < np - 1; ++j) {
85 if (theDistFunc[i].GetXsec(j + 1) > 1.e-20) {
86 theLowThreshold[i] = theDistFunc[i].GetEnergy(j);
90 for (
G4int j = 1; j < np; ++j) {
91 if (theDistFunc[i].GetXsec(j - 1) > 1.e-20) {
92 theHighThreshold[i] = theDistFunc[i].GetEnergy(j);