EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PndBlackBoxTask.cxx
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file PndBlackBoxTask.cxx
1 // -------------------------------------------------------------------------
2 // ----- PndBlackBoxTask source file -----
3 // ----- Created 08/06/10 by R. Kliemt -----
4 // -------------------------------------------------------------------------
5 
6 #include "PndBlackBoxTask.h"
7 
9 FairTask(name)
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 
32 void PndBlackBoxTask::SetVerbose(Int_t iVerbose)
33 {
34  fVerbose = iVerbose;
35  TList* thistasks = this->GetListOfTasks();
36  for(Int_t i=0;i<thistasks->GetEntries();i++)
37  {
38  ((FairTask*)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* opt)
51 {
52  return;
53 }
54 
56