#include <G4InterpolationIterator.hh>
Definition at line 34 of file G4InterpolationIterator.hh.
◆ G4InterpolationIterator()
◆ ~G4InterpolationIterator()
G4InterpolationIterator::~G4InterpolationIterator |
( |
| ) |
|
|
inline |
◆ Current()
◆ Fetch()
G4bool G4InterpolationIterator::Fetch |
( |
| ) |
|
|
inline |
Definition at line 48 of file G4InterpolationIterator.hh.
49 {
50 if (!started) {
51 started = true;
52 counter = -1;
53 current = 0;
54 }
56 if (++counter == nEntries) started = false;
57 result = false;
58 else if (current != nRanges - 1 && counter == theManager->start[current + 1]) current++;
59 return result;
60 }
The documentation for this class was generated from the following file: