/* * PndEmcClusterRingSorter.h */ #ifndef PNDEMCCLUSTERRINGSORTER_H_ #define PNDEMCCLUSTERRINGSORTER_H_ #include class PndEmcClusterRingSorter: public FairRingSorter { public: PndEmcClusterRingSorter(int size = 100, double width = 10):FairRingSorter(size, width){}; virtual ~PndEmcClusterRingSorter(); virtual FairTimeStamp* CreateElement(FairTimeStamp* data); void SetClusterType(Int_t type=0) {fClusterType=type;}; private: Int_t fClusterType=0; ClassDef (PndEmcClusterRingSorter,1); }; #endif /* PNDEMCCLUSTERRINGSORTER_H_ */