#include <G4ParticleHPHash.hh>
Definition at line 37 of file G4ParticleHPHash.hh.
◆ G4ParticleHPHash() [1/2]
G4ParticleHPHash::G4ParticleHPHash |
( |
| ) |
|
|
inline |
◆ ~G4ParticleHPHash()
G4ParticleHPHash::~G4ParticleHPHash |
( |
| ) |
|
|
inline |
◆ G4ParticleHPHash() [2/2]
Definition at line 48 of file G4ParticleHPHash.hh.
49 {
50 theIndex = aHash.theIndex;
51 theData = aHash.theData;
52 prepared = aHash.prepared;
53 if (aHash.theUpper != nullptr) {
55 }
56 else {
57 theUpper = nullptr;
58 }
59 }
◆ Clear()
void G4ParticleHPHash::Clear |
( |
| ) |
|
|
inline |
Definition at line 76 of file G4ParticleHPHash.hh.
77 {
78 if (theUpper != nullptr) {
79 theUpper->Clear();
80 delete theUpper;
81 theUpper = nullptr;
82 }
83 theIndex.clear();
84 theData.clear();
85 prepared = false;
86 }
◆ GetMinIndex()
Definition at line 102 of file G4ParticleHPHash.hh.
103 {
105 if (theData.empty()) return 0;
106 if (theData[0].GetX() > e) return 0;
107
109 if (theUpper != nullptr) {
110 lower = theUpper->GetMinIndex(e);
111 }
112 unsigned int i;
113 for (i = lower; i < theData.size(); i++) {
114 if (theData[i].GetX() > e) {
115 result = theIndex[i - 1];
116 break;
117 }
118 }
119 if (result == -1) result = theIndex[theIndex.size() - 1];
120 return result;
121 }
◆ operator=()
Definition at line 61 of file G4ParticleHPHash.hh.
62 {
63 if (&aHash != this) {
64 theIndex = aHash.theIndex;
65 theData = aHash.theData;
66 if (aHash.theUpper != nullptr) {
68 }
69 else {
70 theUpper = nullptr;
71 }
72 }
73 return *this;
74 }
◆ Prepared()
G4bool G4ParticleHPHash::Prepared |
( |
| ) |
const |
|
inline |
◆ SetData()
Definition at line 89 of file G4ParticleHPHash.hh.
90 {
91 prepared = true;
92 G4ParticleHPDataPoint aPoint;
94 theData.push_back(aPoint);
95 theIndex.push_back(index);
96 if (0 == theData.size() % 10 && !theData.empty()) {
98 theUpper->SetData(
static_cast<G4int>(theData.size()) - 1, x, y);
99 }
100 }
void SetData(G4double e, G4double x)
The documentation for this class was generated from the following file: