// $Id: hrichdumpraw.h,v 1.2 2002-09-25 16:19:58 eberl Exp $ // Last update by Thomas Eberl: 02/09/25 18:10:04 // #ifndef HRICHDUMPRAW_H #define HRICHDUMPRAW_H #include "hreconstructor.h" #include "hlocation.h" #include "hparset.h" #include #include class HCategory; class HIterator; class HRichDumpRaw : public HReconstructor { public: HRichDumpRaw(); HRichDumpRaw(Text_t *name,Text_t *title); ~HRichDumpRaw(); Bool_t init(); Bool_t finalize(); Int_t execute(); HCategory* getRawCat(){return fRawCat;} void setCalCat(HCategory* pRawCat){fRawCat = pRawCat;} ClassDef(HRichDumpRaw,1) //ROOT extension private: Int_t nCounter; HCategory *fRawCat; //! HIterator* fIter; //! TH2F *h1;//! TFile *ff;//! }; #endif // HRICHDUMPRAW_H