FairRoot/PandaRoot
PndBlackBoxTask.cxx
Go to the documentation of this file.
1 // -------------------------------------------------------------------------
2 // ----- PndBlackBoxTask source file -----
3 // ----- Created 08/06/10 by R. Kliemt -----
4 // -------------------------------------------------------------------------
5 
6 #include "PndBlackBoxTask.h"
7 
10 {
11 }
12 // -------------------------------------------------------------------------
13 
14 // ----- Destructor ----------------------------------------------------
16 {
17 }
18 // -------------------------------------------------------------------------
19 
20 // ----- Initialization of Parameter Containers -------------------------
22 {
23 }
24 
26 {
27  return kSUCCESS;
28 }
29 
30 // -------------------------------------------------------------------------
31 
33 {
35  TList* thistasks = this->GetListOfTasks();
36  for(Int_t i=0;i<thistasks->GetEntries();i++)
37  {
38  ((PndPersistencyTask*)thistasks->At(i))->SetVerbose(fVerbose);
39  }
40 }
41 
42 // ----- Public method Init --------------------------------------------
44 {
45  return kSUCCESS;
46 }
47 // -------------------------------------------------------------------------
48 
49 // ----- Public method Exec --------------------------------------------
50 void PndBlackBoxTask::Exec(Option_t*)
51 {
52  return;
53 }
54 
56 
int fVerbose
Definition: poormantracks.C:24
Int_t i
Definition: run_full.C:25
PndBlackBoxTask(const char *name)
virtual InitStatus ReInit()
ClassImp(PndBlackBoxTask)
virtual void Exec(Option_t *opt)
void SetVerbose(Int_t iVerbose)
TString name
virtual void SetParContainers()
Int_t iVerbose
virtual ~PndBlackBoxTask()
virtual InitStatus Init()