34#ifndef G4ParticleHPVector_h
35#define G4ParticleHPVector_h 1
74 for (i = 0; i < nEntries; i++) {
75 theData[i].SetY(theData[i].
GetY() * factor);
77 if (theIntegral !=
nullptr) {
78 theIntegral[i] *= factor;
93 if (y > maxValue) maxValue = y;
94 theData[i].SetData(x, y);
109 if (x > maxValue) maxValue = x;
115 if (x > maxValue) maxValue = x;
124 return theData[i].GetX();
132 for (i = 0; i < nEntries; i++) {
133 if (0 == (i + 1) % 10) {
136 theHash.SetData(i, x, y);
154 for (i = min; i < nEntries; i++) {
155 if (theData[i].
GetX() > e)
break;
163 else if (i == nEntries) {
168 if (e < theData[nEntries - 1].
GetX()) {
170 if ((theData[high].
GetX() - theData[low].
GetX()) / theData[high].
GetX() < 0.000001) {
171 y = theData[low].GetY();
174 y = theInt.Interpolate(theManager.GetScheme(high), e, theData[low].GetX(),
175 theData[high].GetX(), theData[low].GetY(), theData[high].GetY());
179 y = theData[nEntries - 1].GetY();
191 return theData[i].GetY();
198 return theData[i].GetY();
207 for (
G4int i = 0; i < total; i++) {
212 if (0 == nEntries % 10) {
213 theHash.SetData(nEntries - 1, x, y);
226 theManager.Init(aDataFile);
227 Init(aDataFile, total, ux, uy);
239 theManager.CleanUp();
243 delete[] theIntegral;
244 theIntegral =
nullptr;
251 G4int s_tmp = 0, n = 0, m_tmp = 0;
253 G4int a = s_tmp, p = n, t;
261 theManager.AppendScheme(m_tmp, active->
GetScheme(a));
268 if (!(xa == 0) && std::abs(std::abs(xp - xa) / xa) < 0.001) p++;
282 theManager.AppendScheme(m_tmp++, active->
GetScheme(a));
291 theManager.AppendScheme(m_tmp++, active->
GetScheme(p));
305 result = theData[0].GetX();
325 y1 = theData[i - 1].GetX();
326 x1 = theIntegral[i - 1];
327 y2 = theData[i].GetX();
329 if (std::abs((y2 - y1) / y2)
332 y1 = theData[i - 2].GetX();
333 x1 = theIntegral[i - 2];
335 result = theLin.Lin(rand, x1, x2, y1, y2);
347 if (theIntegral !=
nullptr)
return;
348 theIntegral =
new G4double[nEntries];
358 x1 = theData[i].GetX();
359 x0 = theData[i - 1].GetX();
360 if (std::abs(x1 - x0) > std::abs(x1 * 0.0000001)) {
369 G4double y0 = theData[i - 1].GetY();
371 G4double integ = theInt.GetBinIntegral(aScheme, x0, x1, y0, y1);
372#if defined WIN32 - VC
373 if (!_finite(integ)) {
376#elif defined __IBMCPP__
377 if (isinf(integ) || isnan(integ)) {
381 if (std::isinf(integ) || std::isnan(integ)) {
388 theIntegral[i] = sum;
392 theIntegral[i] /= total;
405 if (std::abs((theData[i].
GetX() - theData[i - 1].
GetX()) / theData[i].
GetX()) > 0.0000001) {
406 G4double x1 = theData[i - 1].GetX();
408 G4double y1 = theData[i - 1].GetY();
412 sum += 0.5 * (y2 + y1) * (x2 - x1);
417 sum += (a - b) * (x2 - x1) + b * (x2 *
G4Log(x2) - x1 *
G4Log(x1));
425 sum += y1 * (x2 - x1);
436 __FILE__, __LINE__,
"Unknown interpolation scheme in G4ParticleHPVector::Integrate");
446 return totalIntegral;
451 theManager = aManager;
460 theManager.AppendScheme(aPoint, aScheme);
470 for (
G4int i = 1; i < nEntries; i++) {
472 theInt.GetBinIntegral(theManager.GetScheme(i - 1), theData[i - 1].GetX(),
473 theData[i].GetX(), theData[i - 1].GetY(), theData[i].GetY());
474 weighted += theInt.GetWeightedBinIntegral(theManager.GetScheme(i - 1),
475 theData[i - 1].GetX(), theData[i].GetX(),
476 theData[i - 1].GetY(), theData[i].GetY());
478 result = weighted / running;
532 std::vector<G4double> theBlocked;
533 std::vector<G4double> theBuffered;
G4double G4Exp(G4double initial_x)
Exponential Function double precision.
G4double G4Log(G4double x)
G4InterpolationScheme GetScheme(G4int anIndex)
void SetY(G4int i, G4double x)
G4ParticleHPVector & operator=(const G4ParticleHPVector &right)
const G4ParticleHPDataPoint & GetPoint(G4int i) const
void SetX(G4int i, G4double e)
void SetScheme(G4int aPoint, const G4InterpolationScheme &aScheme)
void SetData(G4int i, G4double x, G4double y)
void Times(G4double factor)
friend G4ParticleHPVector & operator+(G4ParticleHPVector &left, G4ParticleHPVector &right)
G4double Get50percentBorder()
void IntegrateAndNormalise()
G4double GetXsec(G4int i)
const G4InterpolationManager & GetInterpolationManager() const
std::vector< G4double > GetBuffered()
G4double GetMaxY(G4double emin, G4double emax)
G4double Get15percentBorder()
G4double GetXsec(G4double e, G4int min)
void ThinOut(G4double precision)
G4double GetY(G4int i) const
void SetXsec(G4int i, G4double x)
void SetLabel(G4double aLabel)
G4int GetEnergyIndex(G4double &e)
void SetInterpolationManager(const G4InterpolationManager &aManager)
void Init(std::istream &aDataFile, G4double ux=1., G4double uy=1.)
G4double GetY(G4double x)
G4double GetEnergy(G4int i) const
G4double GetX(G4int i) const
void Merge(G4ParticleHPVector *active, G4ParticleHPVector *passive)
void SetEnergy(G4int i, G4double e)
void Init(std::istream &aDataFile, G4int total, G4double ux=1., G4double uy=1.)
G4int GetVectorLength() const
std::vector< G4double > GetBlocked()
void SetPoint(G4int i, const G4ParticleHPDataPoint &it)
void SetVerbose(G4int ff)
void InitInterpolation(std::istream &aDataFile)
void SetInterpolationManager(G4InterpolationManager &aMan)
static G4Pow * GetInstance()
G4double powA(G4double A, G4double y) const