PandaRoot
PndSciTHitRingSorter.h
Go to the documentation of this file.
1 //****************************************************************************
2 //* This file is part of PandaRoot. *
3 //* *
4 //* PandaRoot is distributed under the terms of the *
5 //* GNU General Public License (GPL) version 3, *
6 //* copied verbatim in the file "LICENSE". *
7 //* *
8 //* Copyright (C) 2006 - 2024 FAIR GmbH and copyright holders of PandaRoot *
9 //* The copyright holders are listed in the file "COPYRIGHTHOLDERS". *
10 //* The authors are listed in the file "AUTHORS". *
11 //****************************************************************************
12 
13 /*
14  * PndSciTHitRingSorter.h
15  *
16  * Created on: May 13, 2015
17  * Author: Steinschaden Dominik
18  * Last update: 6.2015
19  */
20 
21 #ifndef PNDSCITHITRINGSORTER_H
22 #define PNDSCITHITRINGSORTER_H
23 
24 #include "FairRingSorter.h"
25 
26 class PndSciTHitRingSorter : public FairRingSorter {
27  public:
28  PndSciTHitRingSorter(int size = 100, double width = 10) : FairRingSorter(size, width){};
29  virtual ~PndSciTHitRingSorter();
30 
31  virtual FairTimeStamp *CreateElement(FairTimeStamp *data);
32 
34 };
35 
36 #endif /* PndSciTHitRingSorter_H */
virtual FairTimeStamp * CreateElement(FairTimeStamp *data)
ClassDef(PndSciTHitRingSorter, 1)
virtual ~PndSciTHitRingSorter()
PndSciTHitRingSorter(int size=100, double width=10)