FairRoot/PandaRoot
PndFtsHitRingSorter.h
Go to the documentation of this file.
1 /*
2  * PndFtsHitRingSorter.h
3  *
4  * Created on: Sep 9, 2011
5  * Author: stockman
6  */
7 
8 #ifndef PndFtsHitRINGSORTER_H_
9 #define PndFtsHitRINGSORTER_H_
10 
11 #include <FairRingSorter.h>
12 
13 class PndFtsHitRingSorter: public FairRingSorter {
14 public:
15  PndFtsHitRingSorter(int size = 100, double width = 10):FairRingSorter(size, width){};
16  virtual ~PndFtsHitRingSorter();
17 
18  virtual FairTimeStamp* CreateElement(FairTimeStamp* data);
19 
21 };
22 
23 #endif /* PndFtsHitRINGSORTER_H_ */
virtual FairTimeStamp * CreateElement(FairTimeStamp *data)
ClassDef(PndFtsHitRingSorter, 1)
PndFtsHitRingSorter(int size=100, double width=10)