#ifndef HMATRIXCATITER_H
#define HMATRIXCATITER_H
#include "hiterator.h"
#include "TArrayI.h"
#include "hmatrixcategory.h"
class HMatrixCatIter : public HIterator {
private:
HMatrixCatIter(void);
protected:
HLocation fCurrentLoc;
HMatrixCategory *fCategory;
TArrayI *fSizes;
Int_t fCursor;
Int_t fAntCursor;
Bool_t fDir;
Int_t fEnd;
Int_t fBegin;
public:
HMatrixCatIter(HMatrixCategory *cat,Bool_t dir=kIterForward);
virtual ~HMatrixCatIter(void);
TCollection *GetCollection(void) const;
TObject *Next(void);
void Reset(void);
Bool_t gotoLocation(HLocation &loc);
HLocation &getLocation(void);
ClassDef(HMatrixCatIter,1)
};
#endif /* !HMATRIXCATITER_H */
Last change: Sat May 22 12:59:27 2010
Last generated: 2010-05-22 12:59
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.