Import Geant4 0.0.0 source tree
This commit is contained in:
@@ -0,0 +1,62 @@
|
||||
// This code implementation is the intellectual property of
|
||||
// neutron_hp -- header file
|
||||
// J.P. Wellisch, Nov-1996
|
||||
// A prototype of the low energy neutron transport model.
|
||||
//
|
||||
// By copying, distributing or modifying the Program (or any work
|
||||
// based on the Program) you indicate your acceptance of this statement,
|
||||
// and all its terms.
|
||||
//
|
||||
// $Id: G4InterpolationIterator.hh,v 2.1 1998/11/07 11:20:54 hpw Exp $
|
||||
// GEANT4 tag $Name: geant4-00 $
|
||||
//
|
||||
#ifndef G4InterpolationIterator_h
|
||||
#define G4InterpolationIterator_h 1
|
||||
|
||||
#include "G4InterpolationManager.hh"
|
||||
|
||||
class G4InterpolationIterator
|
||||
{
|
||||
private:
|
||||
G4InterpolationIterator() {}
|
||||
|
||||
public:
|
||||
G4InterpolationIterator(G4InterpolationManager * aManager)
|
||||
{
|
||||
started = false;
|
||||
theManager = aManager;
|
||||
}
|
||||
|
||||
~G4InterpolationIterator(){}
|
||||
|
||||
inline G4bool Fetch()
|
||||
{
|
||||
if(!started)
|
||||
{
|
||||
started = true;
|
||||
counter=-1;
|
||||
current = 0;
|
||||
}
|
||||
G4bool result = true;
|
||||
if(++counter==nEntries)
|
||||
started = false;
|
||||
result = false;
|
||||
else if(current != nRanges-1&&counter==theManager->start[current+1])
|
||||
current++;
|
||||
return result;
|
||||
}
|
||||
|
||||
inline G4InterpolationScheme Current()
|
||||
{
|
||||
if(!started) G4Exception("G4InterpolationIterator not started yet");
|
||||
return aManager->scheme[current];
|
||||
}
|
||||
|
||||
private:
|
||||
G4InterpolationManager * theManager;
|
||||
G4int current;
|
||||
G4int counter;
|
||||
G4bool started;
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user