PandaRoot
PndEmcClusterRingSorter.h
Go to the documentation of this file.
1 /*
2  * PndEmcClusterRingSorter.h
3  */
4 
5 #ifndef PNDEMCCLUSTERRINGSORTER_H_
6 #define PNDEMCCLUSTERRINGSORTER_H_
7 
8 #include <FairRingSorter.h>
9 
10 class PndEmcClusterRingSorter: public FairRingSorter {
11 public:
12  PndEmcClusterRingSorter(int size = 100, double width = 10):FairRingSorter(size, width){};
13  virtual ~PndEmcClusterRingSorter();
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 (PndEmcClusterRingSorter,1);
23 };
24 
25 #endif /* PNDEMCCLUSTERRINGSORTER_H_ */
void SetClusterType(Int_t type=0)
PndEmcClusterRingSorter(int size=100, double width=10)
virtual FairTimeStamp * CreateElement(FairTimeStamp *data)
virtual ~PndEmcClusterRingSorter()