PandaRoot
PndSciTHitSorterTask.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  * PndSciTHitSorterTask.h
15  *
16  * Created on: May 13, 2015
17  * Author: Steinschaden Dominik
18  * Last update: 6.2015
19  */
20 
21 #ifndef PNDSCITHITSORTERTASK_H
22 #define PNDSCITHITSORTERTASK_H
23 
24 #include "FairRingSorterTask.h"
25 #include "FairRingSorter.h"
26 
27 class PndSciTHitSorterTask : public FairRingSorterTask {
28  public:
30  PndSciTHitSorterTask(const char *name) : FairRingSorterTask(name){};
31  PndSciTHitSorterTask(Int_t numberOfCells, Double_t widthOfCells, TString inputBranch, TString outputBranch, TString folderName)
32  : FairRingSorterTask(numberOfCells, widthOfCells, inputBranch, outputBranch, folderName){};
33 
34  virtual ~PndSciTHitSorterTask();
35 
36  virtual void AddNewDataToTClonesArray(FairTimeStamp *data);
37  virtual FairRingSorter *InitSorter(Int_t numberOfCells, Double_t widthOfCells) const;
38 
40 };
41 
42 #endif /* PNDSCITHITSORTERTASK_H_ */
PndSciTHitSorterTask(const char *name)
ClassDef(PndSciTHitSorterTask, 1)
virtual ~PndSciTHitSorterTask()
virtual FairRingSorter * InitSorter(Int_t numberOfCells, Double_t widthOfCells) const
PndSciTHitSorterTask(Int_t numberOfCells, Double_t widthOfCells, TString inputBranch, TString outputBranch, TString folderName)
virtual void AddNewDataToTClonesArray(FairTimeStamp *data)