PandaRoot
PndMdtDigiSorterTask.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  * PndMdtDigiSorterTask.h
15  */
16 
17 #ifndef PNDMDTDIGISORTERTASK_H_
18 #define PNDMDTDIGISORTERTASK_H_
19 
20 #include "FairRingSorterTask.h"
21 #include <FairRingSorter.h>
22 
23 class PndMdtDigiSorterTask : public FairRingSorterTask {
24  public:
26  PndMdtDigiSorterTask(const char *name) : FairRingSorterTask(name){};
27  PndMdtDigiSorterTask(Int_t numberOfCells, Double_t widthOfCells, TString inputBranch, TString outputBranch, TString folderName)
28  : FairRingSorterTask(numberOfCells, widthOfCells, inputBranch, outputBranch, folderName){};
29 
30  virtual ~PndMdtDigiSorterTask();
31 
32  virtual void AddNewDataToTClonesArray(FairTimeStamp *data);
33  virtual FairRingSorter *InitSorter(Int_t numberOfCells, Double_t widthOfCells) const;
34 
36 };
37 
38 #endif /* PNDMDTSORTERTASK_H_ */
ClassDef(PndMdtDigiSorterTask, 1)
virtual FairRingSorter * InitSorter(Int_t numberOfCells, Double_t widthOfCells) const
virtual void AddNewDataToTClonesArray(FairTimeStamp *data)
PndMdtDigiSorterTask(const char *name)
virtual ~PndMdtDigiSorterTask()
PndMdtDigiSorterTask(Int_t numberOfCells, Double_t widthOfCells, TString inputBranch, TString outputBranch, TString folderName)