#ifndef HFRPCHITFINDER_H #define HFRPCHITFINDER_H #include "frpcdef.h" #include "hlocation.h" #include "hreconstructor.h" class HCategory; class HFRpcHitFinderPar; class HFRpcHitFinder : public HReconstructor { private: HCategory *pFRpcClusCat; HCategory *pFRpcHitCat; HFRpcHitFinderPar *pFRpcHitFinderPar; HLocation fLoc; Float_t fMatchRadius; Float_t fMatchTime; public: HFRpcHitFinder(); HFRpcHitFinder(const Text_t *name, const Text_t *title); void initVariables(); Bool_t init(); Bool_t reinit(); Int_t execute(); Bool_t finalize() { return kTRUE; } bool fillHit(Float_t x, Float_t y, Float_t z, Float_t tof, Int_t hit1, Int_t hit2); }; #endif /* !HFRPCHITFINDER_H */