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