/* * PndMdtDigiSorterTask.h */ #ifndef PNDMDTDIGISORTERTASK_H_ #define PNDMDTDIGISORTERTASK_H_ #include "FairRingSorterTask.h" #include class PndMdtDigiSorterTask: public FairRingSorterTask { public: PndMdtDigiSorterTask(); PndMdtDigiSorterTask(const char* name):FairRingSorterTask(name){}; PndMdtDigiSorterTask(Int_t numberOfCells, Double_t widthOfCells, TString inputBranch, TString outputBranch, TString folderName): FairRingSorterTask(numberOfCells, widthOfCells, inputBranch, outputBranch, folderName){}; virtual ~PndMdtDigiSorterTask(); virtual void AddNewDataToTClonesArray(FairTimeStamp* data); virtual FairRingSorter* InitSorter(Int_t numberOfCells, Double_t widthOfCells) const; ClassDef(PndMdtDigiSorterTask, 1); }; #endif /* PNDMDTSORTERTASK_H_ */