#ifndef HSTART2HITFSIM_H #define HSTART2HITFSIM_H #include "hreconstructor.h" class HCategory; class HStart2HitFSim : public HReconstructor { private: HCategory* fCatHit; //! pointer to the hit data Double_t fresolution; //! time resolution in ns static HStart2HitFSim* fHitFinder; //! public: HStart2HitFSim(void); HStart2HitFSim(const Text_t* name, const Text_t* title,Double_t resol=0.006); ~HStart2HitFSim(void) {} static HStart2HitFSim* getHitFinder(){ return fHitFinder;} void setResolution(Double_t res) { fresolution = res ; } Bool_t init(void); Int_t execute(void); Bool_t finalize(){return kTRUE;} ClassDef(HStart2HitFSim, 0) // Hit finder for START2 detector }; #endif /* !HSTART2HITFSIM_H */