FairRoot/PandaRoot
PndRichHitRingSorter.h
Go to the documentation of this file.
1 /*
2  * Author: stockman
3  * PndRichHitRingSorter.h
4  *
5  */
6 // -------------------------------------------------------------------------
7 // ----- PndRichHitRingSorter header file -----
8 // ----- HARPHOOL KUMAWAT h.kumawat@gsi.de -----
9 // ----- -----
10 // -------------------------------------------------------------------------
11 
12 #ifndef PNDRICHHITRINGSORTER_H_
13 #define PNDRICHHITRINGSORTER_H_
14 
15 #include <FairRingSorter.h>
16 
17 class PndRichHitRingSorter: public FairRingSorter {
18 public:
19  PndRichHitRingSorter(int size = 100, double width = 10):FairRingSorter(size, width){};
20  virtual ~PndRichHitRingSorter();
21 
22  virtual FairTimeStamp* CreateElement(FairTimeStamp* data);
23 
25 };
26 
27 #endif /* PNDRICHHITRINGSORTER_H_ */
ClassDef(PndRichHitRingSorter, 1)
virtual FairTimeStamp * CreateElement(FairTimeStamp *data)
PndRichHitRingSorter(int size=100, double width=10)