EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PndBlackBoxTask.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file PndBlackBoxTask.h
1 
2 #ifndef PNDBLACKBOXTASK_H
3 #define PNDBLACKBOXTASK_H
4 
5 #include "FairTask.h"
6 
7 class TClonesArray;
8 
9 class PndBlackBoxTask : public FairTask
10  {
11  public:
12  PndBlackBoxTask(const char* name);
13  virtual ~PndBlackBoxTask();
14  virtual void SetParContainers();
15  virtual InitStatus Init();
16  virtual InitStatus ReInit();
17  virtual void Exec(Option_t* opt);
18  void SetVerbose(Int_t iVerbose);
19 
20  private:
21 
23 
24  };
25 
26 #endif