// // ******************************************************************** // * DISCLAIMER * // * * // * The following disclaimer summarizes all the specific disclaimers * // * of contributors to this software. The specific disclaimers,which * // * govern, are listed with their locations in: * // * http://cern.ch/geant4/license * // * * // * Neither the authors of this software system, nor their employing * // * institutes,nor the agencies providing financial support for this * // * work make any representation or warranty, express or implied, * // * regarding this software system or assume any liability for its * // * use. * // * * // * This code implementation is the intellectual property of the * // * GEANT4 collaboration. * // * 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 1.7 2003/11/03 17:54:36 hpw Exp $ // GEANT4 tag $Name: geant4-06-00 $ // #ifndef G4InterpolationIterator_h #define G4InterpolationIterator_h 1 #include "G4InterpolationManager.hh" #include "G4HadronicException.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) throw G4HadronicException(__FILE__, __LINE__, "G4InterpolationIterator not started yet"); return aManager->scheme[current]; } private: G4InterpolationManager * theManager; G4int current; G4int counter; G4bool started; }; #endif