PandaRoot
PndEmcPreclusterRingSorter.h
Go to the documentation of this file.
1 /*
2  * PndEmcPreclusterRingSorter.h
3  */
4 
5 #ifndef PNDEMCPRECLUSTERRINGSORTER_H_
6 #define PNDEMCPRECLUSTERRINGSORTER_H_
7 
8 #include <FairRingSorter.h>
9 
10 class PndEmcPreclusterRingSorter: public FairRingSorter {
11 public:
12  PndEmcPreclusterRingSorter(int size = 100, double width = 10):FairRingSorter(size, width){};
14 
15  virtual FairTimeStamp* CreateElement(FairTimeStamp* data);
16 
17  void SetClusterType(Int_t type=0) {fClusterType=type;};
18 
19 private:
20  Int_t fClusterType=0;
21 
22  ClassDef (PndEmcPreclusterRingSorter,1);
23 };
24 
25 #endif /* PndEmcPreclusterRingSorter_H_ */
virtual ~PndEmcPreclusterRingSorter()
virtual FairTimeStamp * CreateElement(FairTimeStamp *data)
PndEmcPreclusterRingSorter(int size=100, double width=10)