// ------------------------------------------------------------------------- // ----- PndSdsStripClusterer header file ----- // ----- Converted 27.11.2007 from R.Jaekel by R.Kliemt ----- // ------------------------------------------------------------------------- /** PndSdsStripClusterer.h *@author R.Kliemt ** ** Calculator class to find clusters in one channel dimension ** for the MVD strip sensors **/ #ifndef PNDSDSSIMPLESTRIPCLUSTERFINDER_H #define PNDSDSSIMPLESTRIPCLUSTERFINDER_H #include #include #include #include "PndSdsDigiStrip.h" #include "PndSdsCluster.h" #include "PndSdsStripClusterer.h" // #include "PndSdsStripCluster.h" class PndSdsSimpleStripClusterFinder : public PndSdsStripClusterer { public: PndSdsSimpleStripClusterFinder(Int_t DigiType); PndSdsSimpleStripClusterFinder(Int_t DigiType, Int_t rad); ~PndSdsSimpleStripClusterFinder(); std::vector< PndSdsClusterStrip* > SearchClusters(); void SetSearchRadius(Int_t rad=0) {fRadius=rad;}; private: Int_t fRadius; ClassDef(PndSdsSimpleStripClusterFinder,1); }; #endif // PndSdsSimpleStripClusterFinder