FairRoot
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
FairTestDetectorDigiSorterTask.h
Go to the documentation of this file.
1 /********************************************************************************
2  * Copyright (C) 2014 GSI Helmholtzzentrum fuer Schwerionenforschung GmbH *
3  * *
4  * This software is distributed under the terms of the *
5  * GNU Lesser General Public Licence (LGPL) version 3, *
6  * copied verbatim in the file "LICENSE" *
7  ********************************************************************************/
8 /*
9  * FairTestDetectorDigiSorterTask.h
10  *
11  * Created on: Sep 9, 2011
12  * Author: stockman
13  */
14 
15 #ifndef FairTestDetectorDigiSorterTask_H_
16 #define FairTestDetectorDigiSorterTask_H_
17 
18 #include <FairRingSorterTask.h> // for FairRingSorterTask
19 #include <Rtypes.h> // for Double_t, etc
20 #include <TString.h> // for TString
21 
22 class FairRingSorter;
23 class FairTimeStamp;
24 
26 {
27  public:
30  : FairRingSorterTask(name){};
31  FairTestDetectorDigiSorterTask(Int_t numberOfCells,
32  Double_t widthOfCells,
33  TString inputBranch,
34  TString outputBranch,
35  TString folderName)
36  : FairRingSorterTask(numberOfCells, widthOfCells, inputBranch, outputBranch, folderName){};
37 
39 
40  virtual void AddNewDataToTClonesArray(FairTimeStamp* data);
41  virtual FairRingSorter* InitSorter(Int_t numberOfCells, Double_t widthOfCells) const;
42 
44 };
45 
46 #endif /* FairTestDetectorDigiSorterTask_H_ */
ClassDef(FairTestDetectorDigiSorterTask, 1)
virtual void AddNewDataToTClonesArray(FairTimeStamp *data)
virtual FairRingSorter * InitSorter(Int_t numberOfCells, Double_t widthOfCells) const
FairTestDetectorDigiSorterTask(Int_t numberOfCells, Double_t widthOfCells, TString inputBranch, TString outputBranch, TString folderName)