#ifndef HFRPCCLUSTERFINDER_H #define HFRPCCLUSTERFINDER_H #include "frpcdef.h" #include "hlocation.h" #include "hreconstructor.h" class HCategory; class HFRpcClusterFinderPar; class HFRpcGeomPar; class HFRpcClusterFinder : public HReconstructor { private: HCategory *pFRpcCalCat; HCategory *pFRpcClusterCat; HLocation fLoc; Float_t fMatchRadius; Float_t fMatchTime; public: HFRpcClusterFinder(); HFRpcClusterFinder(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_t fillCluster(Float_t x, Float_t y, Float_t z, Float_t tof, Int_t strip1, Int_t strip2); }; #endif /* !HFRPCCLUSTERFINDER_H */