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