Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4ParticleHPVector Class Reference

#include <G4ParticleHPVector.hh>

Public Member Functions

 G4ParticleHPVector ()
 
 G4ParticleHPVector (G4int n)
 
 ~G4ParticleHPVector ()
 
G4ParticleHPVectoroperator= (const G4ParticleHPVector &right)
 
void SetVerbose (G4int ff)
 
void Times (G4double factor)
 
void SetPoint (G4int i, const G4ParticleHPDataPoint &it)
 
void SetData (G4int i, G4double x, G4double y)
 
void SetX (G4int i, G4double e)
 
void SetEnergy (G4int i, G4double e)
 
void SetY (G4int i, G4double x)
 
void SetXsec (G4int i, G4double x)
 
G4double GetEnergy (G4int i) const
 
G4double GetXsec (G4int i)
 
G4double GetX (G4int i) const
 
const G4ParticleHPDataPointGetPoint (G4int i) const
 
void Hash ()
 
void ReHash ()
 
G4double GetXsec (G4double e)
 
G4int GetEnergyIndex (G4double &e)
 
G4double GetXsec (G4double e, G4int min)
 
G4double GetY (G4double x)
 
G4int GetVectorLength () const
 
G4double GetY (G4int i)
 
G4double GetY (G4int i) const
 
void Dump ()
 
void InitInterpolation (std::istream &aDataFile)
 
void Init (std::istream &aDataFile, G4int total, G4double ux=1., G4double uy=1.)
 
void Init (std::istream &aDataFile, G4double ux=1., G4double uy=1.)
 
void ThinOut (G4double precision)
 
void SetLabel (G4double aLabel)
 
G4double GetLabel ()
 
void CleanUp ()
 
void Merge (G4ParticleHPVector *active, G4ParticleHPVector *passive)
 
void Merge (G4InterpolationScheme aScheme, G4double aValue, G4ParticleHPVector *active, G4ParticleHPVector *passive)
 
G4double SampleLin ()
 
G4double Sample ()
 
G4doubleDebug ()
 
void IntegrateAndNormalise ()
 
void Integrate ()
 
G4double GetIntegral ()
 
void SetInterpolationManager (const G4InterpolationManager &aManager)
 
const G4InterpolationManagerGetInterpolationManager () const
 
void SetInterpolationManager (G4InterpolationManager &aMan)
 
void SetScheme (G4int aPoint, const G4InterpolationScheme &aScheme)
 
G4InterpolationScheme GetScheme (G4int anIndex)
 
G4double GetMeanX ()
 
G4double GetMaxY (G4double emin, G4double emax)
 
std::vector< G4doubleGetBlocked ()
 
std::vector< G4doubleGetBuffered ()
 
G4double Get15percentBorder ()
 
G4double Get50percentBorder ()
 

Friends

G4ParticleHPVectoroperator+ (G4ParticleHPVector &left, G4ParticleHPVector &right)
 

Detailed Description

Definition at line 56 of file G4ParticleHPVector.hh.

Constructor & Destructor Documentation

◆ G4ParticleHPVector() [1/2]

G4ParticleHPVector::G4ParticleHPVector ( )

Definition at line 80 of file G4ParticleHPVector.cc.

81{
82 theData = new G4ParticleHPDataPoint[20];
83 nPoints = 20;
84 nEntries = 0;
85 Verbose = 0;
86 theIntegral = nullptr;
87 totalIntegral = -1;
88 isFreed = 0;
89 maxValue = -DBL_MAX;
90 the15percentBorderCash = -DBL_MAX;
91 the50percentBorderCash = -DBL_MAX;
92 label = -DBL_MAX;
93}
#define DBL_MAX
Definition templates.hh:62

Referenced by Merge(), Merge(), operator+, and operator=().

◆ G4ParticleHPVector() [2/2]

G4ParticleHPVector::G4ParticleHPVector ( G4int n)

Definition at line 95 of file G4ParticleHPVector.cc.

96{
97 nPoints = std::max(n, 20);
98 theData = new G4ParticleHPDataPoint[nPoints];
99 nEntries = 0;
100 Verbose = 0;
101 theIntegral = nullptr;
102 totalIntegral = -1;
103 isFreed = 0;
104 maxValue = -DBL_MAX;
105 the15percentBorderCash = -DBL_MAX;
106 the50percentBorderCash = -DBL_MAX;
107 label = -DBL_MAX;
108}

◆ ~G4ParticleHPVector()

G4ParticleHPVector::~G4ParticleHPVector ( )

Definition at line 110 of file G4ParticleHPVector.cc.

111{
112 // if(Verbose==1)G4cout <<"G4ParticleHPVector::~G4ParticleHPVector"<<G4endl;
113 delete[] theData;
114 // if(Verbose==1)G4cout <<"Vector: delete theData"<<G4endl;
115 delete[] theIntegral;
116 // if(Verbose==1)G4cout <<"Vector: delete theIntegral"<<G4endl;
117 theHash.Clear();
118 isFreed = 1;
119}

Member Function Documentation

◆ CleanUp()

void G4ParticleHPVector::CleanUp ( )
inline

Definition at line 236 of file G4ParticleHPVector.hh.

237 {
238 nEntries = 0;
239 theManager.CleanUp();
240 maxValue = -DBL_MAX;
241 theHash.Clear();
242 // 080811 TK DB
243 delete[] theIntegral;
244 theIntegral = nullptr;
245 }

Referenced by Merge(), and Merge().

◆ Debug()

G4double * G4ParticleHPVector::Debug ( )
inline

Definition at line 342 of file G4ParticleHPVector.hh.

342{ return theIntegral; }

◆ Dump()

void G4ParticleHPVector::Dump ( )

Definition at line 206 of file G4ParticleHPVector.cc.

207{
208 G4cout << nEntries << G4endl;
209 for (G4int i = 0; i < nEntries; i++) {
210 G4cout << theData[i].GetX() << " ";
211 G4cout << theData[i].GetY() << " ";
212 // if (i!=1&&i==5*(i/5)) G4cout << G4endl;
213 G4cout << G4endl;
214 }
215 G4cout << G4endl;
216}
int G4int
Definition G4Types.hh:85
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout

◆ Get15percentBorder()

G4double G4ParticleHPVector::Get15percentBorder ( )

Definition at line 472 of file G4ParticleHPVector.cc.

473{
474 if (the15percentBorderCash > -DBL_MAX / 2.) return the15percentBorderCash;
475 G4double result;
476 if (GetVectorLength() == 1) {
477 result = theData[0].GetX();
478 the15percentBorderCash = result;
479 }
480 else {
481 if (theIntegral == nullptr) {
483 }
484 G4int i;
485 result = theData[GetVectorLength() - 1].GetX();
486 for (i = 0; i < GetVectorLength(); i++) {
487 if (theIntegral[i] / theIntegral[GetVectorLength() - 1] > 0.15) {
488 result = theData[std::min(i + 1, GetVectorLength() - 1)].GetX();
489 the15percentBorderCash = result;
490 break;
491 }
492 }
493 the15percentBorderCash = result;
494 }
495 return result;
496}
double G4double
Definition G4Types.hh:83
G4int GetVectorLength() const

◆ Get50percentBorder()

G4double G4ParticleHPVector::Get50percentBorder ( )

Definition at line 498 of file G4ParticleHPVector.cc.

499{
500 if (the50percentBorderCash > -DBL_MAX / 2.) return the50percentBorderCash;
501 G4double result;
502 if (GetVectorLength() == 1) {
503 result = theData[0].GetX();
504 the50percentBorderCash = result;
505 }
506 else {
507 if (theIntegral == nullptr) {
509 }
510 G4int i;
511 G4double x = 0.5;
512 result = theData[GetVectorLength() - 1].GetX();
513 for (i = 0; i < GetVectorLength(); i++) {
514 if (theIntegral[i] / theIntegral[GetVectorLength() - 1] > x) {
515 G4int it;
516 it = i;
517 if (it == GetVectorLength() - 1) {
518 result = theData[GetVectorLength() - 1].GetX();
519 }
520 else {
521 G4double x1, x2, y1, y2;
522 x1 = theIntegral[i - 1] / theIntegral[GetVectorLength() - 1];
523 x2 = theIntegral[i] / theIntegral[GetVectorLength() - 1];
524 y1 = theData[i - 1].GetX();
525 y2 = theData[i].GetX();
526 result = theLin.Lin(x, x1, x2, y1, y2);
527 }
528 the50percentBorderCash = result;
529 break;
530 }
531 }
532 the50percentBorderCash = result;
533 }
534 return result;
535}

◆ GetBlocked()

std::vector< G4double > G4ParticleHPVector::GetBlocked ( )
inline

Definition at line 497 of file G4ParticleHPVector.hh.

497{ return theBlocked; }

◆ GetBuffered()

std::vector< G4double > G4ParticleHPVector::GetBuffered ( )
inline

Definition at line 498 of file G4ParticleHPVector.hh.

498{ return theBuffered; }

◆ GetEnergy()

G4double G4ParticleHPVector::GetEnergy ( G4int i) const
inline

Definition at line 118 of file G4ParticleHPVector.hh.

118{ return theData[i].GetX(); }

Referenced by G4ParticleHPChannel::Harmonise(), G4ParticleHPElementData::Harmonise(), Merge(), and Merge().

◆ GetEnergyIndex()

G4int G4ParticleHPVector::GetEnergyIndex ( G4double & e)

Definition at line 194 of file G4ParticleHPVector.cc.

195{
196 // returns energy index of the bin in which ekin is lower then emax and higher than emin for CALENDF
197 // returns energy index of emax for NJOY
198 if (nEntries == 0) return 0;
199 if ( ( ! theHash.Prepared() ) && ( ! G4Threading::IsWorkerThread() ) ) Hash();
200 G4int min = theHash.GetMinIndex(e);
201 G4int i = 0;
202 for (i=min ; i < nEntries; i++) if (theData[i].GetX() >= e) break;
203 return i;
204}
G4double GetX(G4int i) const
T min(const T t1, const T t2)
brief Return the smallest of the two arguments
G4bool IsWorkerThread()

◆ GetIntegral()

G4double G4ParticleHPVector::GetIntegral ( )
inline

Definition at line 443 of file G4ParticleHPVector.hh.

444 {
445 if (totalIntegral < -0.5) Integrate();
446 return totalIntegral;
447 }

◆ GetInterpolationManager()

const G4InterpolationManager & G4ParticleHPVector::GetInterpolationManager ( ) const
inline

Definition at line 454 of file G4ParticleHPVector.hh.

454{ return theManager; }

Referenced by G4ParticleHPLabAngularEnergy::Sample().

◆ GetLabel()

G4double G4ParticleHPVector::GetLabel ( )
inline

Definition at line 234 of file G4ParticleHPVector.hh.

234{ return label; }

Referenced by Merge().

◆ GetMaxY()

G4double G4ParticleHPVector::GetMaxY ( G4double emin,
G4double emax )

Definition at line 537 of file G4ParticleHPVector.cc.

538{
539 G4double xsmax = 0.;
540 if (emin > emax || nEntries == 0) return xsmax;
541 if (emin >= theData[nEntries - 1].GetX()) {
542 xsmax = theData[nEntries - 1].GetY();
543 return xsmax;
544 }
545 if (emax <= theData[0].GetX()) {
546 xsmax = theData[0].GetY();
547 return xsmax;
548 }
549 if (!theHash.Prepared() && !G4Threading::IsWorkerThread()) Hash();
550 // Find the lowest index, low, where x(energy) is higher than emin
551 G4int i = theHash.GetMinIndex(emin);
552 for (; i < nEntries; ++i) {
553 if (theData[i].GetX() >= emin) break;
554 }
555 G4int low = i;
556 // Find the lowest index, high, where x(energy) is higher than emax
557 i = theHash.GetMinIndex(emax);
558 for (; i < nEntries; ++i) {
559 if (theData[i].GetX() >= emax) break;
560 }
561 G4int high = i;
562 xsmax = GetXsec(emin); // Set xsmax as low border
563 // Find the highest cross-section
564 for (i = low; i < high; ++i) {
565 if (xsmax < theData[i].GetY()) xsmax = theData[i].GetY();
566 }
567 // Check if it is smaller than the high border (e.g. as for a monotonic increasing cross-section)
568 G4double highborder = GetXsec(emax);
569 if (xsmax < highborder) xsmax = highborder;
570
571 if (xsmax == 0.) {
572 throw G4HadronicException(__FILE__, __LINE__,
573 "G4ParticleHPVector::GetMaxY : called "
574 "G4Nucleus::GetBiasedThermalNucleus for DBRC, xsmax==0.");
575 }
576
577 return xsmax;
578}
G4double GetXsec(G4int i)
G4double GetY(G4double x)

◆ GetMeanX()

G4double G4ParticleHPVector::GetMeanX ( )
inline

Definition at line 465 of file G4ParticleHPVector.hh.

466 {
467 G4double result;
468 G4double running = 0;
469 G4double weighted = 0;
470 for (G4int i = 1; i < nEntries; i++) {
471 running +=
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());
477 }
478 result = weighted / running;
479 return result;
480 }

Referenced by G4ParticleHPLabAngularEnergy::Sample().

◆ GetPoint()

const G4ParticleHPDataPoint & G4ParticleHPVector::GetPoint ( G4int i) const
inline

Definition at line 126 of file G4ParticleHPVector.hh.

126{ return theData[i]; }

Referenced by G4ParticleHPIsoData::FillChannelData(), and operator=().

◆ GetScheme()

G4InterpolationScheme G4ParticleHPVector::GetScheme ( G4int anIndex)
inline

Definition at line 463 of file G4ParticleHPVector.hh.

463{ return theManager.GetScheme(anIndex); }

Referenced by Merge(), and Merge().

◆ GetVectorLength()

◆ GetX()

◆ GetXsec() [1/3]

G4double G4ParticleHPVector::GetXsec ( G4double e)

Definition at line 143 of file G4ParticleHPVector.cc.

144{
145 if (nEntries == 0) return 0;
146 // if(!theHash.Prepared()) Hash();
147 if (!theHash.Prepared()) {
149 ;
150 }
151 else {
152 Hash();
153 }
154 }
155 G4int min = theHash.GetMinIndex(e);
156 G4int i;
157 for (i = min; i < nEntries; i++) {
158 // if(theData[i].GetX()>e) break;
159 if (theData[i].GetX() >= e) break;
160 }
161 G4int low = i - 1;
162 G4int high = i;
163 if (i == 0) {
164 low = 0;
165 high = 1;
166 }
167 else if (i == nEntries) {
168 low = nEntries - 2;
169 high = nEntries - 1;
170 }
171 G4double y;
172 if (e < theData[nEntries - 1].GetX()) {
173 // Protect against doubled-up x values
174 // if( (theData[high].GetX()-theData[low].GetX())/theData[high].GetX() < 0.000001)
175 if (theData[high].GetX() != 0
176 // 080808 TKDB
177 //&&( theData[high].GetX()-theData[low].GetX())/theData[high].GetX() < 0.000001)
178 && (std::abs((theData[high].GetX() - theData[low].GetX()) / theData[high].GetX())
179 < 0.000001))
180 {
181 y = theData[low].GetY();
182 }
183 else {
184 y = theInt.Interpolate(theManager.GetScheme(high), e, theData[low].GetX(),
185 theData[high].GetX(), theData[low].GetY(), theData[high].GetY());
186 }
187 }
188 else {
189 y = theData[nEntries - 1].GetY();
190 }
191 return y;
192}

◆ GetXsec() [2/3]

G4double G4ParticleHPVector::GetXsec ( G4double e,
G4int min )
inline

Definition at line 151 of file G4ParticleHPVector.hh.

152 {
153 G4int i;
154 for (i = min; i < nEntries; i++) {
155 if (theData[i].GetX() > e) break;
156 }
157 G4int low = i - 1;
158 G4int high = i;
159 if (i == 0) {
160 low = 0;
161 high = 1;
162 }
163 else if (i == nEntries) {
164 low = nEntries - 2;
165 high = nEntries - 1;
166 }
167 G4double y;
168 if (e < theData[nEntries - 1].GetX()) {
169 // Protect against doubled-up x values
170 if ((theData[high].GetX() - theData[low].GetX()) / theData[high].GetX() < 0.000001) {
171 y = theData[low].GetY();
172 }
173 else {
174 y = theInt.Interpolate(theManager.GetScheme(high), e, theData[low].GetX(),
175 theData[high].GetX(), theData[low].GetY(), theData[high].GetY());
176 }
177 }
178 else {
179 y = theData[nEntries - 1].GetY();
180 }
181 return y;
182 }

◆ GetXsec() [3/3]

G4double G4ParticleHPVector::GetXsec ( G4int i)
inline

Definition at line 119 of file G4ParticleHPVector.hh.

119{ return theData[i].GetY(); }

Referenced by GetMaxY(), GetY(), G4ParticleHPChannel::Harmonise(), G4ParticleHPElementData::Harmonise(), Merge(), and Merge().

◆ GetY() [1/3]

◆ GetY() [2/3]

G4double G4ParticleHPVector::GetY ( G4int i)
inline

Definition at line 187 of file G4ParticleHPVector.hh.

188 {
189 if (i < 0) i = 0;
190 if (i >= GetVectorLength()) i = GetVectorLength() - 1;
191 return theData[i].GetY();
192 }

◆ GetY() [3/3]

G4double G4ParticleHPVector::GetY ( G4int i) const
inline

Definition at line 194 of file G4ParticleHPVector.hh.

195 {
196 if (i < 0) i = 0;
197 if (i >= GetVectorLength()) i = GetVectorLength() - 1;
198 return theData[i].GetY();
199 }

◆ Hash()

void G4ParticleHPVector::Hash ( )
inline

Definition at line 128 of file G4ParticleHPVector.hh.

129 {
130 G4int i;
131 G4double x, y;
132 for (i = 0; i < nEntries; i++) {
133 if (0 == (i + 1) % 10) {
134 x = GetX(i);
135 y = GetY(i);
136 theHash.SetData(i, x, y);
137 }
138 }
139 }

Referenced by G4ParticleHPIsoData::FillChannelData(), GetEnergyIndex(), GetMaxY(), GetXsec(), and ReHash().

◆ Init() [1/2]

void G4ParticleHPVector::Init ( std::istream & aDataFile,
G4double ux = 1.,
G4double uy = 1. )
inline

Definition at line 218 of file G4ParticleHPVector.hh.

219 {
220 G4int total;
221 aDataFile >> total;
222 delete[] theData;
223 theData = new G4ParticleHPDataPoint[total];
224 nPoints = total;
225 nEntries = 0;
226 theManager.Init(aDataFile);
227 Init(aDataFile, total, ux, uy);
228 }
void Init(std::istream &aDataFile, G4int total, G4double ux=1., G4double uy=1.)
G4double total(Particle const *const p1, Particle const *const p2)

◆ Init() [2/2]

void G4ParticleHPVector::Init ( std::istream & aDataFile,
G4int total,
G4double ux = 1.,
G4double uy = 1. )
inline

Definition at line 204 of file G4ParticleHPVector.hh.

205 {
206 G4double x, y;
207 for (G4int i = 0; i < total; i++) {
208 aDataFile >> x >> y;
209 x *= ux;
210 y *= uy;
211 SetData(i, x, y);
212 if (0 == nEntries % 10) {
213 theHash.SetData(nEntries - 1, x, y);
214 }
215 }
216 }
void SetData(G4int i, G4double x, G4double y)

Referenced by G4ParticleHPArbitaryTab::Init(), and Init().

◆ InitInterpolation()

void G4ParticleHPVector::InitInterpolation ( std::istream & aDataFile)
inline

Definition at line 202 of file G4ParticleHPVector.hh.

202{ theManager.Init(aDataFile); }

◆ Integrate()

void G4ParticleHPVector::Integrate ( )
inline

Definition at line 396 of file G4ParticleHPVector.hh.

397 {
398 G4int i;
399 if (nEntries == 1) {
400 totalIntegral = 0;
401 return;
402 }
403 G4double sum = 0;
404 for (i = 1; i < GetVectorLength(); i++) {
405 if (std::abs((theData[i].GetX() - theData[i - 1].GetX()) / theData[i].GetX()) > 0.0000001) {
406 G4double x1 = theData[i - 1].GetX();
407 G4double x2 = theData[i].GetX();
408 G4double y1 = theData[i - 1].GetY();
409 G4double y2 = theData[i].GetY();
410 G4InterpolationScheme aScheme = theManager.GetScheme(i);
411 if (aScheme == LINLIN || aScheme == CLINLIN || aScheme == ULINLIN) {
412 sum += 0.5 * (y2 + y1) * (x2 - x1);
413 }
414 else if (aScheme == LINLOG || aScheme == CLINLOG || aScheme == ULINLOG) {
415 G4double a = y1;
416 G4double b = (y2 - y1) / (G4Log(x2) - G4Log(x1));
417 sum += (a - b) * (x2 - x1) + b * (x2 * G4Log(x2) - x1 * G4Log(x1));
418 }
419 else if (aScheme == LOGLIN || aScheme == CLOGLIN || aScheme == ULOGLIN) {
420 G4double a = G4Log(y1);
421 G4double b = (G4Log(y2) - G4Log(y1)) / (x2 - x1);
422 sum += (G4Exp(a) / b) * (G4Exp(b * x2) - G4Exp(b * x1));
423 }
424 else if (aScheme == HISTO || aScheme == CHISTO || aScheme == UHISTO) {
425 sum += y1 * (x2 - x1);
426 }
427 else if (aScheme == LOGLOG || aScheme == CLOGLOG || aScheme == ULOGLOG) {
428 G4double a = G4Log(y1);
429 G4double b = (G4Log(y2) - G4Log(y1)) / (G4Log(x2) - G4Log(x1));
430 sum +=
431 (G4Exp(a) / (b + 1))
432 * (G4Pow::GetInstance()->powA(x2, b + 1) - G4Pow::GetInstance()->powA(x1, b + 1));
433 }
434 else {
435 throw G4HadronicException(
436 __FILE__, __LINE__, "Unknown interpolation scheme in G4ParticleHPVector::Integrate");
437 }
438 }
439 }
440 totalIntegral = sum;
441 }
G4double G4Exp(G4double initial_x)
Exponential Function double precision.
Definition G4Exp.hh:180
G4InterpolationScheme
G4double G4Log(G4double x)
Definition G4Log.hh:227
static G4Pow * GetInstance()
Definition G4Pow.cc:41
G4double powA(G4double A, G4double y) const
Definition G4Pow.hh:230

Referenced by GetIntegral().

◆ IntegrateAndNormalise()

void G4ParticleHPVector::IntegrateAndNormalise ( )
inline

Definition at line 344 of file G4ParticleHPVector.hh.

345 {
346 G4int i;
347 if (theIntegral != nullptr) return;
348 theIntegral = new G4double[nEntries];
349 if (nEntries == 1) {
350 theIntegral[0] = 1;
351 return;
352 }
353 theIntegral[0] = 0;
354 G4double sum = 0;
355 G4double x1 = 0;
356 G4double x0 = 0;
357 for (i = 1; i < GetVectorLength(); i++) {
358 x1 = theData[i].GetX();
359 x0 = theData[i - 1].GetX();
360 if (std::abs(x1 - x0) > std::abs(x1 * 0.0000001)) {
361 //********************************************************************
362 // EMendoza -> the interpolation scheme is not always lin-lin
363 /*
364 sum+= 0.5*(theData[i].GetY()+theData[i-1].GetY())*
365 (x1-x0);
366 */
367 //********************************************************************
368 G4InterpolationScheme aScheme = theManager.GetScheme(i);
369 G4double y0 = theData[i - 1].GetY();
370 G4double y1 = theData[i].GetY();
371 G4double integ = theInt.GetBinIntegral(aScheme, x0, x1, y0, y1);
372#if defined WIN32 - VC
373 if (!_finite(integ)) {
374 integ = 0;
375 }
376#elif defined __IBMCPP__
377 if (isinf(integ) || isnan(integ)) {
378 integ = 0;
379 }
380#else
381 if (std::isinf(integ) || std::isnan(integ)) {
382 integ = 0;
383 }
384#endif
385 sum += integ;
386 //********************************************************************
387 }
388 theIntegral[i] = sum;
389 }
390 G4double total = theIntegral[GetVectorLength() - 1];
391 for (i = 1; i < GetVectorLength(); i++) {
392 theIntegral[i] /= total;
393 }
394 }

Referenced by Get15percentBorder(), Get50percentBorder(), Sample(), and SampleLin().

◆ Merge() [1/2]

void G4ParticleHPVector::Merge ( G4InterpolationScheme aScheme,
G4double aValue,
G4ParticleHPVector * active,
G4ParticleHPVector * passive )

Definition at line 234 of file G4ParticleHPVector.cc.

236{
237 // interpolate between labels according to aScheme, cut at aValue,
238 // continue in unknown areas by substraction of the last difference.
239
240 CleanUp();
241 G4int s_tmp = 0, n = 0, m_tmp = 0;
243 G4int a = s_tmp, p = n, t;
244 while (a < active->GetVectorLength()) // Loop checking, 11.05.2015, T. Koi
245 {
246 if (active->GetEnergy(a) <= passive->GetEnergy(p)) {
247 G4double xa = active->GetEnergy(a);
248 G4double yy = theInt.Interpolate(aScheme, aValue, active->GetLabel(), passive->GetLabel(),
249 active->GetXsec(a), passive->GetXsec(xa));
250 SetData(m_tmp, xa, yy);
251 theManager.AppendScheme(m_tmp, active->GetScheme(a));
252 m_tmp++;
253 a++;
254 G4double xp = passive->GetEnergy(p);
255 // if( std::abs(std::abs(xp-xa)/xa)<0.0000001&&a<active->GetVectorLength() )
256 if (xa != 0 && std::abs(std::abs(xp - xa) / xa) < 0.0000001 && a < active->GetVectorLength())
257 {
258 p++;
259 tmp = active;
260 t = a;
261 active = passive;
262 a = p;
263 passive = tmp;
264 p = t;
265 }
266 }
267 else {
268 tmp = active;
269 t = a;
270 active = passive;
271 a = p;
272 passive = tmp;
273 p = t;
274 }
275 }
276
277 G4double deltaX = passive->GetXsec(GetEnergy(m_tmp - 1)) - GetXsec(m_tmp - 1);
278 while (p != passive->GetVectorLength()
279 && passive->GetEnergy(p) <= aValue) // Loop checking, 11.05.2015, T. Koi
280 {
281 G4double anX;
282 anX = passive->GetXsec(p) - deltaX;
283 if (anX > 0) {
284 // if(std::abs(GetEnergy(m-1)-passive->GetEnergy(p))/passive->GetEnergy(p)>0.0000001)
285 if (passive->GetEnergy(p) == 0
286 || std::abs(GetEnergy(m_tmp - 1) - passive->GetEnergy(p)) / passive->GetEnergy(p)
287 > 0.0000001)
288 {
289 SetData(m_tmp, passive->GetEnergy(p), anX);
290 theManager.AppendScheme(m_tmp++, passive->GetScheme(p));
291 }
292 }
293 p++;
294 }
295 // Rebuild the Hash;
296 if (theHash.Prepared()) {
297 ReHash();
298 }
299}
G4InterpolationScheme GetScheme(G4int anIndex)
G4double GetEnergy(G4int i) const

◆ Merge() [2/2]

void G4ParticleHPVector::Merge ( G4ParticleHPVector * active,
G4ParticleHPVector * passive )
inline

Definition at line 248 of file G4ParticleHPVector.hh.

249 {
250 CleanUp();
251 G4int s_tmp = 0, n = 0, m_tmp = 0;
253 G4int a = s_tmp, p = n, t;
254 while (a < active->GetVectorLength()
255 && p < passive->GetVectorLength()) // Loop checking, 11.05.2015, T. Koi
256 {
257 if (active->GetEnergy(a) <= passive->GetEnergy(p)) {
258 G4double xa = active->GetEnergy(a);
259 G4double yy = active->GetXsec(a);
260 SetData(m_tmp, xa, yy);
261 theManager.AppendScheme(m_tmp, active->GetScheme(a));
262 m_tmp++;
263 a++;
264 G4double xp = passive->GetEnergy(p);
265
266 // 080409 TKDB
267 // if( std::abs(std::abs(xp-xa)/xa)<0.001 ) p++;
268 if (!(xa == 0) && std::abs(std::abs(xp - xa) / xa) < 0.001) p++;
269 }
270 else {
271 tmp = active;
272 t = a;
273 active = passive;
274 a = p;
275 passive = tmp;
276 p = t;
277 }
278 }
279 while (a != active->GetVectorLength()) // Loop checking, 11.05.2015, T. Koi
280 {
281 SetData(m_tmp, active->GetEnergy(a), active->GetXsec(a));
282 theManager.AppendScheme(m_tmp++, active->GetScheme(a));
283 a++;
284 }
285 while (p != passive->GetVectorLength()) // Loop checking, 11.05.2015, T. Koi
286 {
287 if (std::abs(GetEnergy(m_tmp - 1) - passive->GetEnergy(p)) / passive->GetEnergy(p) > 0.001)
288 // if(std::abs(GetEnergy(m)-passive->GetEnergy(p))/passive->GetEnergy(p)>0.001)
289 {
290 SetData(m_tmp, passive->GetEnergy(p), passive->GetXsec(p));
291 theManager.AppendScheme(m_tmp++, active->GetScheme(p));
292 }
293 p++;
294 }
295 }

Referenced by G4ParticleHPDiscreteTwoBody::Sample(), and G4ParticleHPLabAngularEnergy::Sample().

◆ operator=()

G4ParticleHPVector & G4ParticleHPVector::operator= ( const G4ParticleHPVector & right)

Definition at line 121 of file G4ParticleHPVector.cc.

122{
123 if (&right == this) return *this;
124
125 G4int i;
126
127 totalIntegral = right.totalIntegral;
128 if (right.theIntegral != nullptr) theIntegral = new G4double[right.nEntries];
129 for (i = 0; i < right.nEntries; i++) {
130 SetPoint(i, right.GetPoint(i)); // copy theData
131 if (right.theIntegral != nullptr) theIntegral[i] = right.theIntegral[i];
132 }
133 theManager = right.theManager;
134 label = right.label;
135
136 Verbose = right.Verbose;
137 the15percentBorderCash = right.the15percentBorderCash;
138 the50percentBorderCash = right.the50percentBorderCash;
139 theHash = right.theHash;
140 return *this;
141}
const G4ParticleHPDataPoint & GetPoint(G4int i) const
void SetPoint(G4int i, const G4ParticleHPDataPoint &it)

◆ ReHash()

void G4ParticleHPVector::ReHash ( )
inline

Definition at line 141 of file G4ParticleHPVector.hh.

142 {
143 theHash.Clear();
144 Hash();
145 }

Referenced by Merge(), and ThinOut().

◆ Sample()

G4double G4ParticleHPVector::Sample ( )

Definition at line 375 of file G4ParticleHPVector.cc.

376{
377 G4double result = 0.;
378 G4int j;
379 for (j = 0; j < GetVectorLength(); j++) {
380 if (GetY(j) < 0) SetY(j, 0);
381 }
382
383 if (!theBuffered.empty() && G4UniformRand() < 0.5) {
384 result = theBuffered[0];
385 theBuffered.erase(theBuffered.begin());
386 if (result < GetX(GetVectorLength() - 1)) return result;
387 }
388 if (GetVectorLength() == 1) {
389 result = theData[0].GetX();
390 }
391 else {
392 if (theIntegral == nullptr) {
394 }
395 G4int icounter = 0;
396 G4int icounter_max = 1024;
397 do {
398 icounter++;
399 if (icounter > icounter_max) {
400 G4cout << "Loop-counter exceeded the threshold value at " << __LINE__ << "th line of "
401 << __FILE__ << "." << G4endl;
402 break;
403 }
404 // 080808
405 /*
406 G4double rand;
407 G4double value, test, baseline;
408 baseline = theData[GetVectorLength()-1].GetX()-theData[0].GetX();
409 do
410 {
411 value = baseline*G4UniformRand();
412 value += theData[0].GetX();
413 test = GetY(value)/maxValue;
414 rand = G4UniformRand();
415 }
416 //while(test<rand);
417 while( test < rand && test > 0 );
418 result = value;
419 */
420 G4double rand;
421 G4double value = 0., test;
422 G4int jcounter = 0;
423 G4int jcounter_max = 1024;
424 do {
425 jcounter++;
426 if (jcounter > jcounter_max) {
427 G4cout << "Loop-counter exceeded the threshold value at " << __LINE__ << "th line of "
428 << __FILE__ << "." << G4endl;
429 break;
430 }
431 rand = G4UniformRand();
432 G4int ibin = -1;
433 for (G4int i = 0; i < GetVectorLength(); i++) {
434 if (rand < theIntegral[i]) {
435 ibin = i;
436 break;
437 }
438 }
439 if (ibin < 0) G4cout << "TKDB 080807 " << rand << G4endl;
440 // result
441 rand = G4UniformRand();
442 G4double x1, x2;
443 if (ibin == 0) {
444 x1 = theData[ibin].GetX();
445 value = x1;
446 break;
447 }
448 x1 = theData[ibin - 1].GetX();
449
450 x2 = theData[ibin].GetX();
451 value = rand * (x2 - x1) + x1;
452 //***********************************************************************
453 /*
454 test = GetY ( value ) / std::max ( GetY( ibin-1 ) , GetY ( ibin ) );
455 */
456 //***********************************************************************
457 // EMendoza - Always linear interpolation:
458 G4double y1 = theData[ibin - 1].GetY();
459 G4double y2 = theData[ibin].GetY();
460 G4double mval = (y2 - y1) / (x2 - x1);
461 G4double bval = y1 - mval * x1;
462 test = (mval * value + bval) / std::max(GetY(ibin - 1), GetY(ibin));
463 //***********************************************************************
464 } while (G4UniformRand() > test); // Loop checking, 11.05.2015, T. Koi
465 result = value;
466 // 080807
467 } while (IsBlocked(result)); // Loop checking, 11.05.2015, T. Koi
468 }
469 return result;
470}
#define G4UniformRand()
Definition Randomize.hh:52
void SetY(G4int i, G4double x)

Referenced by G4ParticleHPPhotonDist::GetPhotons(), G4ParticleHPContAngularPar::Sample(), G4ParticleHPDiscreteTwoBody::Sample(), G4ParticleHPLabAngularEnergy::Sample(), and G4ParticleHPPartial::Sample().

◆ SampleLin()

G4double G4ParticleHPVector::SampleLin ( )
inline

Definition at line 300 of file G4ParticleHPVector.hh.

301 {
302 G4double result;
303 if (theIntegral == nullptr) IntegrateAndNormalise();
304 if (GetVectorLength() == 1) {
305 result = theData[0].GetX();
306 }
307 else {
308 G4int i;
309 G4double rand = G4UniformRand();
310
311 // this was replaced
312 // for(i=1;i<GetVectorLength();i++)
313 // {
314 // if(rand<theIntegral[i]/theIntegral[GetVectorLength()-1]) break;
315 // }
316
317 // by this (begin)
318 for (i = GetVectorLength() - 1; i >= 0; i--) {
319 if (rand > theIntegral[i] / theIntegral[GetVectorLength() - 1]) break;
320 }
321 if (i != GetVectorLength() - 1) i++;
322 // until this (end)
323
324 G4double x1, x2, y1, y2;
325 y1 = theData[i - 1].GetX();
326 x1 = theIntegral[i - 1];
327 y2 = theData[i].GetX();
328 x2 = theIntegral[i];
329 if (std::abs((y2 - y1) / y2)
330 < 0.0000001) // not really necessary, since the case is excluded by construction
331 {
332 y1 = theData[i - 2].GetX();
333 x1 = theIntegral[i - 2];
334 }
335 result = theLin.Lin(rand, x1, x2, y1, y2);
336 }
337 return result;
338 }

◆ SetData()

void G4ParticleHPVector::SetData ( G4int i,
G4double x,
G4double y )
inline

Definition at line 89 of file G4ParticleHPVector.hh.

90 {
91 // G4cout <<"G4ParticleHPVector::SetData called"<<nPoints<<" "<<nEntries<<G4endl;
92 Check(i);
93 if (y > maxValue) maxValue = y;
94 theData[i].SetData(x, y);
95 }

Referenced by Init(), Merge(), Merge(), G4ParticleHPDiscreteTwoBody::Sample(), G4ParticleHPLabAngularEnergy::Sample(), G4ParticleHPLegendreStore::Sample(), and SetPoint().

◆ SetEnergy()

void G4ParticleHPVector::SetEnergy ( G4int i,
G4double e )
inline

Definition at line 101 of file G4ParticleHPVector.hh.

102 {
103 Check(i);
104 theData[i].SetX(e);
105 }

◆ SetInterpolationManager() [1/2]

void G4ParticleHPVector::SetInterpolationManager ( const G4InterpolationManager & aManager)
inline

◆ SetInterpolationManager() [2/2]

void G4ParticleHPVector::SetInterpolationManager ( G4InterpolationManager & aMan)
inline

Definition at line 456 of file G4ParticleHPVector.hh.

456{ theManager = aMan; }

◆ SetLabel()

void G4ParticleHPVector::SetLabel ( G4double aLabel)
inline

Definition at line 232 of file G4ParticleHPVector.hh.

232{ label = aLabel; }

◆ SetPoint()

void G4ParticleHPVector::SetPoint ( G4int i,
const G4ParticleHPDataPoint & it )
inline

Definition at line 82 of file G4ParticleHPVector.hh.

83 {
84 G4double x = it.GetX();
85 G4double y = it.GetY();
86 SetData(i, x, y);
87 }

Referenced by operator=().

◆ SetScheme()

void G4ParticleHPVector::SetScheme ( G4int aPoint,
const G4InterpolationScheme & aScheme )
inline

Definition at line 458 of file G4ParticleHPVector.hh.

459 {
460 theManager.AppendScheme(aPoint, aScheme);
461 }

Referenced by G4ParticleHPPartial::Sample().

◆ SetVerbose()

void G4ParticleHPVector::SetVerbose ( G4int ff)
inline

Definition at line 69 of file G4ParticleHPVector.hh.

69{ Verbose = ff; }

◆ SetX()

void G4ParticleHPVector::SetX ( G4int i,
G4double e )
inline

◆ SetXsec()

void G4ParticleHPVector::SetXsec ( G4int i,
G4double x )
inline

Definition at line 112 of file G4ParticleHPVector.hh.

113 {
114 Check(i);
115 if (x > maxValue) maxValue = x;
116 theData[i].SetY(x);
117 }

◆ SetY()

void G4ParticleHPVector::SetY ( G4int i,
G4double x )
inline

Definition at line 106 of file G4ParticleHPVector.hh.

107 {
108 Check(i);
109 if (x > maxValue) maxValue = x;
110 theData[i].SetY(x);
111 }

Referenced by G4ParticleHPContAngularPar::Sample(), G4ParticleHPDiscreteTwoBody::Sample(), G4ParticleHPLabAngularEnergy::Sample(), G4ParticleHPPartial::Sample(), and Sample().

◆ ThinOut()

void G4ParticleHPVector::ThinOut ( G4double precision)

Definition at line 301 of file G4ParticleHPVector.cc.

302{
303 // anything in there?
304 if (GetVectorLength() == 0) return;
305 // make the new vector
306 auto aBuff = new G4ParticleHPDataPoint[nPoints];
307 G4double x, x1, x2, y, y1, y2;
308 G4int count = 0, current = 2, start = 1;
309
310 // First element always goes and is never tested.
311 aBuff[0] = theData[0];
312
313 // Find the rest
314 while (current < GetVectorLength()) // Loop checking, 11.05.2015, T. Koi
315 {
316 x1 = aBuff[count].GetX();
317 y1 = aBuff[count].GetY();
318 x2 = theData[current].GetX();
319 y2 = theData[current].GetY();
320
321 if (x1 - x2 == 0) {
322 // Following block added for avoiding div 0 error on Release + G4FPE_DEBUG
323 for (G4int j = start; j < current; j++) {
324 y = (y2 + y1) / 2.;
325 if (std::abs(y - theData[j].GetY()) > precision * y) {
326 aBuff[++count] = theData[current - 1]; // for this one, everything was fine
327 start = current; // the next candidate
328 break;
329 }
330 }
331 }
332 else {
333 for (G4int j = start; j < current; j++) {
334 x = theData[j].GetX();
335 if (x1 - x2 == 0)
336 y = (y2 + y1) / 2.;
337 else
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]; // for this one, everything was fine
341 start = current; // the next candidate
342 break;
343 }
344 }
345 }
346 current++;
347 }
348 // The last one also always goes, and is never tested.
349 aBuff[++count] = theData[GetVectorLength() - 1];
350 delete[] theData;
351 theData = aBuff;
352 nEntries = count + 1;
353
354 // Rebuild the Hash;
355 if (theHash.Prepared()) {
356 ReHash();
357 }
358}

◆ Times()

void G4ParticleHPVector::Times ( G4double factor)
inline

Definition at line 71 of file G4ParticleHPVector.hh.

72 {
73 G4int i;
74 for (i = 0; i < nEntries; i++) {
75 theData[i].SetY(theData[i].GetY() * factor);
76 }
77 if (theIntegral != nullptr) {
78 theIntegral[i] *= factor;
79 }
80 }

Friends And Related Symbol Documentation

◆ operator+

G4ParticleHPVector & operator+ ( G4ParticleHPVector & left,
G4ParticleHPVector & right )
friend

Definition at line 41 of file G4ParticleHPVector.cc.

42{
43 auto result = new G4ParticleHPVector;
44 G4int j = 0;
45 G4double x;
46 G4double y;
47 G4int running = 0;
48 for (G4int i = 0; i < left.GetVectorLength(); i++) {
49 while (j < right.GetVectorLength()) // Loop checking, 11.05.2015, T. Koi
50 {
51 if (right.GetX(j) < left.GetX(i) * 1.001) {
52 x = right.GetX(j);
53 y = right.GetY(j) + left.GetY(x);
54 result->SetData(running++, x, y);
55 j++;
56 }
57 // else if(std::abs((right.GetX(j)-left.GetX(i))/(left.GetX(i)+right.GetX(j)))>0.001)
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)
60 {
61 x = left.GetX(i);
62 y = left.GetY(i) + right.GetY(x);
63 result->SetData(running++, x, y);
64 break;
65 }
66 else {
67 break;
68 }
69 }
70 if (j == right.GetVectorLength()) {
71 x = left.GetX(i);
72 y = left.GetY(i) + right.GetY(x);
73 result->SetData(running++, x, y);
74 }
75 }
76 result->ThinOut(0.02);
77 return *result;
78}

The documentation for this class was generated from the following files: