// ------------------------------------------------------------------------- // ----- PndSsdStripClusterBuilder header file ----- // ----- Converted 27.11.2007 from R.Jaekel by R.Kliemt ----- // ------------------------------------------------------------------------- /** PndSsdStripClusterBuilder.h *@author R.Kliemt ** ** Calculator class to find clusters in one channel dimension ** for the Ssd strip sensors **/ #ifndef PNDSSDSIMPLESTRIPCLUSTERFINDER_H #define PNDSSDSIMPLESTRIPCLUSTERFINDER_H #include #include #include #include "PndMvdDigiStrip.h" #include "PndMvdClusterStrip.h" #include "PndSsdStripClusterBuilder.h" // #include "PndSsdStripCluster.h" class PndSsdSimpleStripClusterFinder : public PndSsdStripClusterBuilder { public: PndSsdSimpleStripClusterFinder(); PndSsdSimpleStripClusterFinder(Int_t rad); ~PndSsdSimpleStripClusterFinder(); std::vector< PndMvdClusterStrip > SearchClusters(); void SetSearchRadius(Int_t rad=0) {fRadius=rad;}; private: Int_t fRadius; ClassDef(PndSsdSimpleStripClusterFinder,1); }; #endif // PndSsdSimpleStripClusterFinder