Class Reference for E1039 Core & Analysis Software
Fun4AllDummyInputManager.cc
Go to the documentation of this file.
2 #include "Fun4AllSyncManager.h"
3 #include <phool/recoConsts.h>
4 
5 #include <iostream>
6 
7 using namespace std;
8 
9 Fun4AllDummyInputManager::Fun4AllDummyInputManager(const string &name, const string &nodename):
10  Fun4AllInputManager(name, nodename),
11  numevents(0)
12 {
13  filename = "NOFILE-0000000000-0000.root";
14  return;
15 }
16 
17 void
19 {
20  // set the runnumber in Fun4All if rc flag is set
21  // so InitRun is triggered.
22  // This setSyncManager is executed during Fun4AllServer::registerInputManager()
23  // normally the runnumber is set in Fun4AllInputManager::fileopen() but since it
24  // would be kind of ridicolous to call this for a dummy input manager
25  // we set the runnumber here
28  int runnumber = rc->get_IntFlag("RUNNUMBER",0);
29  mySyncManager->CurrentRun(runnumber);
30  return;
31 }
32 
33 int
35 {
37  if (verbosity>0)
38  {
39  cout << "Event No: " << numevents << endl;
40  }
42 }
int verbosity
The verbosity level. 0 means not verbose at all.
Definition: Fun4AllBase.h:75
Fun4AllDummyInputManager(const std::string &name="DUMMY", const std::string &nodename="DST")
void setSyncManager(Fun4AllSyncManager *master)
Fun4AllSyncManager * mySyncManager
virtual void setSyncManager(Fun4AllSyncManager *master)
virtual int get_IntFlag(const std::string &name) const
Definition: PHFlag.cc:117
static recoConsts * instance()
Definition: recoConsts.cc:7