#ifndef HGEANTSOURCE_H
#define HGEANTSOURCE_H
#include "hdatasource.h"
#include "TList.h"
#include "THashTable.h"
class HGeantReader;
class HGeantSource : public HDataSource {
private:
TList fReaderList;
THashTable fFileTable;
public:
HGeantSource(void);
HGeantSource(HGeantSource &s);
~HGeantSource(void);
Bool_t addGeantReader(HGeantReader *r,const Text_t *inputFile);
EDsState getNextEvent(void);
Bool_t init(void);
Bool_t reinit(void) {return kTRUE; }
Bool_t finalize(void);
Int_t getCurrentRunId(void) {return 0;}
Int_t getCurrentRefId(void) {return 0;}
Text_t const *getCurrentFileName(void) {return "";}
ClassDef(HGeantSource,1)
};
#endif /* !HGEANTSOURCE_H */
Last change: Sat May 22 12:56:07 2010
Last generated: 2010-05-22 12:56
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.