51 if (right.
GetX(j) < left.
GetX(i) * 1.001) {
54 result->SetData(running++, x, y);
58 else if (left.
GetX(i) + right.
GetX(j) == 0
59 || std::abs((right.
GetX(j) - left.
GetX(i)) / (left.
GetX(i) + right.
GetX(j))) > 0.001)
63 result->SetData(running++, x, y);
73 result->SetData(running++, x, y);
76 result->ThinOut(0.02);
86 theIntegral =
nullptr;
90 the15percentBorderCash = -
DBL_MAX;
91 the50percentBorderCash = -
DBL_MAX;
97 nPoints = std::max(n, 20);
101 theIntegral =
nullptr;
105 the15percentBorderCash = -
DBL_MAX;
106 the50percentBorderCash = -
DBL_MAX;
115 delete[] theIntegral;
123 if (&right ==
this)
return *
this;
127 totalIntegral = right.totalIntegral;
128 if (right.theIntegral !=
nullptr) theIntegral =
new G4double[right.nEntries];
129 for (i = 0; i < right.nEntries; i++) {
131 if (right.theIntegral !=
nullptr) theIntegral[i] = right.theIntegral[i];
133 theManager = right.theManager;
136 Verbose = right.Verbose;
137 the15percentBorderCash = right.the15percentBorderCash;
138 the50percentBorderCash = right.the50percentBorderCash;
139 theHash = right.theHash;
145 if (nEntries == 0)
return 0;
147 if (!theHash.Prepared()) {
155 G4int min = theHash.GetMinIndex(e);
157 for (i = min; i < nEntries; i++) {
159 if (theData[i].
GetX() >= e)
break;
167 else if (i == nEntries) {
172 if (e < theData[nEntries - 1].
GetX()) {
175 if (theData[high].
GetX() != 0
178 && (std::abs((theData[high].
GetX() - theData[low].
GetX()) / theData[high].
GetX())
181 y = theData[low].GetY();
184 y = theInt.Interpolate(theManager.GetScheme(high), e, theData[low].GetX(),
185 theData[high].GetX(), theData[low].GetY(), theData[high].GetY());
189 y = theData[nEntries - 1].GetY();
198 if (nEntries == 0)
return 0;
200 G4int min = theHash.GetMinIndex(e);
202 for (i=min ; i < nEntries; i++)
if (theData[i].
GetX() >= e)
break;
209 for (
G4int i = 0; i < nEntries; i++) {
210 G4cout << theData[i].GetX() <<
" ";
211 G4cout << theData[i].GetY() <<
" ";
218void G4ParticleHPVector::Check(
G4int i)
222 "Skipped some index numbers in G4ParticleHPVector");
224 nPoints =
static_cast<G4int>(1.2 * nPoints);
226 for (
G4int j = 0; j < nEntries; j++)
227 buff[j] = theData[j];
231 if (i == nEntries) nEntries = i + 1;
241 G4int s_tmp = 0, n = 0, m_tmp = 0;
243 G4int a = s_tmp, p = n, t;
251 theManager.AppendScheme(m_tmp, active->
GetScheme(a));
256 if (xa != 0 && std::abs(std::abs(xp - xa) / xa) < 0.0000001 && a < active->
GetVectorLength())
282 anX = passive->
GetXsec(p) - deltaX;
290 theManager.AppendScheme(m_tmp++, passive->
GetScheme(p));
296 if (theHash.Prepared()) {
308 G4int count = 0, current = 2, start = 1;
311 aBuff[0] = theData[0];
316 x1 = aBuff[count].GetX();
317 y1 = aBuff[count].GetY();
318 x2 = theData[current].GetX();
319 y2 = theData[current].GetY();
323 for (
G4int j = start; j < current; j++) {
325 if (std::abs(y - theData[j].
GetY()) > precision * y) {
326 aBuff[++count] = theData[current - 1];
333 for (
G4int j = start; j < current; j++) {
334 x = theData[j].GetX();
338 y = theInt.Lin(x, x1, x2, y1, y2);
339 if (std::abs(y - theData[j].
GetY()) > precision * y) {
340 aBuff[++count] = theData[current - 1];
352 nEntries = count + 1;
355 if (theHash.Prepared()) {
363 std::vector<G4double>::iterator i;
364 for (i = theBlocked.begin(); i != theBlocked.end(); i++) {
366 if (std::abs(aX - aBlock) < 0.1 * MeV) {
384 result = theBuffered[0];
385 theBuffered.erase(theBuffered.begin());
389 result = theData[0].GetX();
392 if (theIntegral ==
nullptr) {
396 G4int icounter_max = 1024;
399 if (icounter > icounter_max) {
400 G4cout <<
"Loop-counter exceeded the threshold value at " << __LINE__ <<
"th line of "
401 << __FILE__ <<
"." <<
G4endl;
423 G4int jcounter_max = 1024;
426 if (jcounter > jcounter_max) {
427 G4cout <<
"Loop-counter exceeded the threshold value at " << __LINE__ <<
"th line of "
428 << __FILE__ <<
"." <<
G4endl;
434 if (rand < theIntegral[i]) {
439 if (ibin < 0)
G4cout <<
"TKDB 080807 " << rand <<
G4endl;
444 x1 = theData[ibin].GetX();
448 x1 = theData[ibin - 1].GetX();
450 x2 = theData[ibin].GetX();
451 value = rand * (x2 - x1) + x1;
458 G4double y1 = theData[ibin - 1].GetY();
460 G4double mval = (y2 - y1) / (x2 - x1);
462 test = (mval * value + bval) / std::max(
GetY(ibin - 1),
GetY(ibin));
467 }
while (IsBlocked(result));
474 if (the15percentBorderCash > -
DBL_MAX / 2.)
return the15percentBorderCash;
477 result = theData[0].GetX();
478 the15percentBorderCash = result;
481 if (theIntegral ==
nullptr) {
489 the15percentBorderCash = result;
493 the15percentBorderCash = result;
500 if (the50percentBorderCash > -
DBL_MAX / 2.)
return the50percentBorderCash;
503 result = theData[0].GetX();
504 the50percentBorderCash = result;
507 if (theIntegral ==
nullptr) {
524 y1 = theData[i - 1].GetX();
525 y2 = theData[i].GetX();
526 result = theLin.Lin(x, x1, x2, y1, y2);
528 the50percentBorderCash = result;
532 the50percentBorderCash = result;
540 if (emin > emax || nEntries == 0)
return xsmax;
541 if (emin >= theData[nEntries - 1].
GetX()) {
542 xsmax = theData[nEntries - 1].GetY();
545 if (emax <= theData[0].
GetX()) {
546 xsmax = theData[0].GetY();
551 G4int i = theHash.GetMinIndex(emin);
552 for (; i < nEntries; ++i) {
553 if (theData[i].
GetX() >= emin)
break;
557 i = theHash.GetMinIndex(emax);
558 for (; i < nEntries; ++i) {
559 if (theData[i].
GetX() >= emax)
break;
564 for (i = low; i < high; ++i) {
565 if (xsmax < theData[i].
GetY()) xsmax = theData[i].GetY();
569 if (xsmax < highborder) xsmax = highborder;
573 "G4ParticleHPVector::GetMaxY : called "
574 "G4Nucleus::GetBiasedThermalNucleus for DBRC, xsmax==0.");
G4ParticleHPVector & operator+(G4ParticleHPVector &left, G4ParticleHPVector &right)
G4GLOB_DLL std::ostream G4cout
G4InterpolationScheme GetScheme(G4int anIndex)
void SetY(G4int i, G4double x)
G4ParticleHPVector & operator=(const G4ParticleHPVector &right)
const G4ParticleHPDataPoint & GetPoint(G4int i) const
void SetData(G4int i, G4double x, G4double y)
G4double Get50percentBorder()
void IntegrateAndNormalise()
G4double GetXsec(G4int i)
G4double GetMaxY(G4double emin, G4double emax)
G4double Get15percentBorder()
void ThinOut(G4double precision)
G4int GetEnergyIndex(G4double &e)
G4double GetY(G4double x)
G4double GetEnergy(G4int i) const
G4double GetX(G4int i) const
void Merge(G4ParticleHPVector *active, G4ParticleHPVector *passive)
G4int GetVectorLength() const
void SetPoint(G4int i, const G4ParticleHPDataPoint &it)