22 #include <TDirectory.h>
29 #include <boost/foreach.hpp>
31 #include <sys/utsname.h>
58 , unregistersubsystem(0)
61 , beginruntimestamp(nullptr)
64 , keep_db_connected(0)
134 for (
int i = 0; i < kMAXSIGNALS; i++)
136 gSystem->IgnoreSignal((ESignals) i);
138 ostringstream histomanagername;
139 histomanagername <<
Name() <<
"HISTOS";
166 cout <<
"Fun4AllServer::dumpHistos() dumping histograms" << endl;
167 if (!filename.empty())
171 vector<Fun4AllHistoManager *>::const_iterator hiter;
174 iret += (*hiter)->dumpHistos(
"", openmode);
201 string currdir = gDirectory->GetPath();
202 TDirectory *tmpdir = gDirectory;
203 if (!tmpdir->FindObject(topnodename.c_str()))
205 tmpdir = tmpdir->mkdir(topnodename.c_str());
208 cout <<
"Error creating TDirectory topdir " << topnodename.c_str() << endl;
217 gROOT->cd(topnodename.c_str());
219 if (!tmpdir->FindObject(subsystem->
Name().c_str()))
221 tmpdir = tmpdir->mkdir(subsystem->
Name().c_str());
224 cout <<
"Error creating TDirectory subdir " << subsystem->
Name() << endl;
233 pair<SubsysReco *, PHCompositeNode *> newsubsyspair(subsystem, subsystopNode);
237 iret = subsystem->
Init(subsystopNode);
239 catch (
const exception &e)
241 cout <<
PHWHERE <<
" caught exception thrown during SubsysReco::Init() from "
242 << subsystem->
Name() << endl;
243 cout <<
"error: " << e.what() << endl;
248 cout <<
PHWHERE <<
" caught unknown type exception thrown during SubsysReco::Init() from "
249 << subsystem->
Name() << endl;
252 gROOT->cd(currdir.c_str());
259 cout <<
"Not Registering Subsystem " << subsystem->
Name() << endl;
263 cout <<
PHWHERE <<
" Error initializing subsystem "
264 << subsystem->
Name() <<
", return code: " << iret << endl;
269 cout <<
"Registering Subsystem " << subsystem->
Name() << endl;
272 ostringstream timer_name;
273 timer_name << subsystem->
Name() <<
"_" << topnodename;
285 pair<SubsysReco *, PHCompositeNode *> subsyspair(subsystem, 0);
293 vector<pair<SubsysReco *, PHCompositeNode *> >::iterator sysiter, removeiter;
302 if ((*sysiter).first == (*removeiter).first)
311 cout <<
"unregisterSubsystem: Could not find SubsysReco "
312 << (*removeiter).first->Name()
313 <<
" in Fun4All Reco Module list" << endl;
314 delete (*removeiter).first;
319 cout <<
"Removing Subsystem: " << (*removeiter).first->Name()
320 <<
" at index " << index << endl;
323 delete (*removeiter).first;
326 vector<Fun4AllOutputManager *>::iterator outiter;
340 vector<pair<SubsysReco *, PHCompositeNode *> >::iterator sysiter;
343 if ((*sysiter).first->Name() == name)
347 cout <<
"Found Subsystem " << name << endl;
349 return (*sysiter).first;
352 cout <<
"Could not find SubsysReco " << name << endl;
359 string separatorstring =
"------------------------------";
360 ostringstream complaintno;
375 vector<Fun4AllOutputManager *>::iterator iter;
378 if ((*iter)->Name() == manager->
Name())
380 cout <<
"OutputManager " << manager->
Name() <<
" allready in list" << endl;
386 cout <<
"Registering OutputManager " << manager->
Name() << endl;
395 vector<string>::iterator striter;
396 vector<pair<SubsysReco *, PHCompositeNode *> >::const_iterator subsysiter;
404 cout <<
PHWHERE <<
"striter: " << *striter << endl;
410 if (*striter == (*subsysiter).first->Name())
415 cout <<
PHWHERE <<
"setting RecoModuleIndex to " << index << endl;
424 cout <<
"Could not find module " << *striter
425 <<
", removing it from list of event selector modules" << endl;
436 vector<Fun4AllOutputManager *>::iterator iter;
439 if (name == (*iter)->Name())
443 cout <<
"Found OutputManager " << name << endl;
448 cout <<
"Could not find OutputManager" << name << endl;
455 vector<Fun4AllHistoManager *>::iterator iter;
458 if ((*iter)->Name() == name)
462 cout <<
"Found HistoManager " << name << endl;
469 cout <<
"Could not find HistoManager " << name << endl;
476 vector<Fun4AllHistoManager *>::iterator iter;
479 if ((*iter)->Name() == manager->
Name())
481 cout <<
"HistoManager " << manager->
Name() <<
" allready in list" << endl;
487 cout <<
"Registering HistoManager " << manager->
Name() << endl;
519 vector<pair<SubsysReco *, PHCompositeNode *> >::iterator iter;
524 cout <<
"*******************************************************************************" << endl;
525 cout <<
"*******************************************************************************" << endl;
526 cout <<
"*******************************************************************************" << endl;
527 cout <<
"Now that I have your attention, please fix the following "
529 vector<string>::const_iterator viter;
532 cout << *viter << endl;
535 cout <<
"*******************************************************************************" << endl;
536 cout <<
"*******************************************************************************" << endl;
537 cout <<
"*******************************************************************************" << endl;
549 string currdir = gDirectory->GetPath();
554 cout <<
"Fun4AllServer::process_event processing " << (*iter).first->Name() << endl;
556 ostringstream newdirname;
557 newdirname << (*iter).second->getName() <<
"/" << (*iter).first->Name();
558 if (!gROOT->cd(newdirname.str().c_str()))
560 cout <<
PHWHERE <<
"Unexpected TDirectory Problem cd'ing to "
561 << (*iter).second->getName()
562 <<
" - send e-mail to off-l with your macro" << endl;
569 cout <<
"process_event: cded to " << newdirname.str().c_str() << endl;
575 ostringstream timer_name;
576 timer_name << (*iter).first->Name() <<
"_" << (*iter).second->getName();
577 std::map<const std::string, PHTimer2>::iterator titer =
timer_map.find(timer_name.str());
578 bool timer_found =
false;
582 titer->second.restart();
586 cout <<
"could not find timer for " << timer_name.str() << endl;
588 RetCodes[icnt] = (*iter).first->process_event((*iter).second);
591 titer->second.stop();
595 catch (
const exception &e)
597 cout <<
PHWHERE <<
" caught exception thrown during process_event from "
598 << (*iter).first->Name() << endl;
599 cout <<
"error: " << e.what() << endl;
604 cout <<
PHWHERE <<
" caught unknown type exception thrown during process_event from "
605 << (*iter).first->Name() << endl;
614 cout <<
"Fun4AllServer::Discard Event by " << (*iter).first->Name() << endl;
623 cout <<
"Fun4AllServer::Abort Event by " << (*iter).first->Name() << endl;
630 cout <<
"Fun4AllServer::Abort Run by " << (*iter).first->Name() << endl;
635 cout <<
"Fun4AllServer::Unknown return code: "
636 <<
RetCodes[icnt] <<
" from process_event method of "
637 << (*iter).first->Name() << endl;
638 cout <<
"This smells like an uninitialized return code and" << endl;
639 cout <<
"it is too dangerous to continue, this Run will be aborted" << endl;
640 cout <<
"If you do not know how to fix this please send mail to" << endl;
641 cout <<
"phenix-off-l with this message" << endl;
656 gROOT->cd(currdir.c_str());
670 static int first = 1;
682 cout <<
PHWHERE <<
" FATAL: Someone changed the number of Output Nodes on the fly, from " <<
OutNodeCount <<
" to " << newcount << endl;
685 vector<Fun4AllOutputManager *>::iterator iterOutMan;
688 if (!(*iterOutMan)->DoNotWriteEvent(&
RetCodes))
692 cout <<
"Writing Event for " << (*iterOutMan)->Name() << endl;
694 (*iterOutMan)->WriteGeneric(dstNode);
700 cout <<
"Not Writing Event for " << (*iterOutMan)->Name() << endl;
714 cout <<
"Fun4AllServer::process_event Resetting Event " << (*iter).first->Name() << endl;
716 (*iter).first->ResetEvent((*iter).second);
722 cout <<
"Fun4AllServer::process_event Resetting Event for Sync Manager " << syncman->
Name() << endl;
734 vector<string> ResetNodeList;
735 ResetNodeList.push_back(
"DST");
738 map<string, PHCompositeNode *>::const_iterator iter;
742 for (vector<string>::const_iterator nodename = ResetNodeList.begin();
743 nodename != ResetNodeList.end(); ++nodename)
745 if (mainIter.
cd(*nodename))
758 vector<pair<SubsysReco *, PHCompositeNode *> >::iterator iter;
763 cout <<
"Fun4AllServer::Reset Resetting " << (*iter).first->Name() << endl;
765 i += (*iter).first->Reset((*iter).second);
767 vector<Fun4AllHistoManager *>::iterator hiter;
778 cout <<
"Setting BOR timestamp to ";
797 cout <<
"overriding BOR timestamp by ";
804 cout <<
"Fun4AllServer::BeginRun: Run number " << runno <<
" uses RECO TIMESTAMP: ";
808 vector<pair<SubsysReco *, PHCompositeNode *> >::iterator iter;
823 string currdir = gDirectory->GetPath();
826 ostringstream newdirname;
827 newdirname << (*iter).second->getName() <<
"/" << (*iter).first->Name();
828 if (!gROOT->cd(newdirname.str().c_str()))
830 cout <<
PHWHERE <<
"Unexpected TDirectory Problem cd'ing to "
831 << (*iter).second->getName()
832 <<
" - send e-mail to off-l with your macro" << endl;
839 cout <<
"BeginRun: cded to " << newdirname.str().c_str() << endl;
845 cout <<
"Fun4AllServer::BeginRun: InitRun for " << (*iter).first->Name() << endl;
849 iret = (*iter).first->InitRun((*iter).second);
851 catch (
const exception &e)
853 cout <<
PHWHERE <<
" caught exception thrown during SubsysReco::InitRun() from "
854 << (*iter).first->Name() << endl;
855 cout <<
"error: " << e.what() << endl;
860 cout <<
PHWHERE <<
" caught unknown type exception thrown during SubsysReco::InitRun() from "
861 << (*iter).first->Name() << endl;
867 cout <<
PHWHERE <<
"Module " << (*iter).first->Name() <<
" issued Abort Run, exiting" << endl;
872 cout <<
PHWHERE <<
"Module " << (*iter).first->Name() <<
" issued non Fun4AllReturnCodes::EVENT_OK return code " << iret <<
" in InitRun()" << endl;
876 gROOT->cd(currdir.c_str());
887 cout <<
"WARNING WARNING, DBs will not be disconnected" << endl;
888 cout <<
"This is for DB server testing purposes only" << endl;
889 cout <<
"If you do not test our DB servers, remove" << endl;
890 cout <<
"Fun4AllServer->KeepDBConnection()" << endl;
891 cout <<
"from your macro" << endl;
911 while ((thisNode = iterat()))
913 if ((thisNode->
getType() ==
"PHCompositeNode"))
922 cout << thisNode->
getName() <<
", Node Count: " << icnt << endl;
934 while ((thisNode = iterat()))
936 if ((thisNode->
getType() ==
"PHCompositeNode"))
953 while ((thisNode = iterat()))
955 if ((thisNode->
getType() ==
"PHCompositeNode"))
969 vector<pair<SubsysReco *, PHCompositeNode *> >::iterator iter;
971 string currdir = gDirectory->GetPath();
976 cout <<
"Fun4AllServer::EndRun: EndRun("
977 << runno <<
") for " << (*iter).first->Name() << endl;
979 ostringstream newdirname;
980 newdirname << (*iter).second->getName() <<
"/" << (*iter).first->Name();
981 if (!gROOT->cd(newdirname.str().c_str()))
983 cout <<
PHWHERE <<
"Unexpected TDirectory Problem cd'ing to "
984 << (*iter).second->getName()
985 <<
" - send e-mail to off-l with your macro" << endl;
992 cout <<
"EndRun: cded to " << newdirname.str().c_str() << endl;
997 (*iter).first->EndRun(runno);
999 catch (
const exception &e)
1001 cout <<
PHWHERE <<
" caught exception thrown during SubsysReco::EndRun() from "
1002 << (*iter).first->Name() << endl;
1003 cout <<
"error: " << e.what() << endl;
1008 cout <<
PHWHERE <<
" caught unknown type exception thrown during SubsysReco::EndRun() from "
1009 << (*iter).first->Name() << endl;
1013 gROOT->cd(currdir.c_str());
1023 vector<pair<SubsysReco *, PHCompositeNode *> >::iterator iter;
1025 string currdir = gDirectory->GetPath();
1030 cout <<
"Fun4AllServer::End: End for " << (*iter).first->Name() << endl;
1032 ostringstream newdirname;
1033 newdirname << (*iter).second->getName() <<
"/" << (*iter).first->Name();
1034 if (!gROOT->cd(newdirname.str().c_str()))
1036 cout <<
PHWHERE <<
"Unexpected TDirectory Problem cd'ing to "
1037 << (*iter).second->getName()
1038 <<
" - send e-mail to off-l with your macro" << endl;
1045 cout <<
"End: cded to " << newdirname.str().c_str() << endl;
1050 i += (*iter).first->End((*iter).second);
1052 catch (
const exception &e)
1054 cout <<
PHWHERE <<
" caught exception thrown during SusbsysReco::End() from "
1055 << (*iter).first->Name() << endl;
1056 cout <<
"error: " << e.what() << endl;
1061 cout <<
PHWHERE <<
" caught unknown type exception thrown during SubsysReco::End() from "
1062 << (*iter).first->Name() << endl;
1066 gROOT->cd(currdir.c_str());
1071 cout <<
"No Run Node, not writing Runwise info" << endl;
1077 vector<Fun4AllOutputManager *>::iterator IOiter;
1080 (*IOiter)->WriteNode(runNode);
1090 cout <<
"*******************************************************************************" << endl;
1091 cout <<
"*******************************************************************************" << endl;
1092 cout <<
"*******************************************************************************" << endl;
1093 cout <<
"Now that we are at the End(), please fix the following "
1095 vector<string>::const_iterator viter;
1098 cout << *viter << endl;
1100 cout <<
" " << endl;
1101 cout <<
"*******************************************************************************" << endl;
1102 cout <<
"*******************************************************************************" << endl;
1103 cout <<
"*******************************************************************************" << endl;
1111 if (what ==
"ALL" || what ==
"HISTOS")
1116 histoman->
Print(what);
1119 if (what ==
"ALL" || what ==
"SUBSYSTEMS")
1122 cout <<
"--------------------------------------" << endl
1124 cout <<
"List of Subsystems in Fun4AllServer:" << endl;
1126 vector<pair<SubsysReco *, PHCompositeNode *> >::const_iterator miter;
1129 cout << (*miter).first->Name()
1130 <<
" running under topNode " << (*miter).second->getName() << endl;
1135 if (what ==
"ALL" || what ==
"INPUTMANAGER")
1140 cout <<
"SyncManager: " << syncman->
Name() << endl;
1141 syncman->
Print(what);
1145 if (what ==
"ALL" || what.find(
"OUTPUTMANAGER") != string::npos)
1148 string pass_on = what;
1149 if (pass_on ==
"ALL" || pass_on ==
"OUTPUTMANAGER")
1151 cout <<
"--------------------------------------" << endl
1153 cout <<
"List of OutputManagers in Fun4AllServer:" << endl;
1158 string::size_type pos = pass_on.find(
"%");
1159 pass_on = pass_on.substr(pos + 1, pass_on.size());
1163 outman->
Print(pass_on);
1167 if (what ==
"ALL" || what ==
"TOPNODES")
1170 cout <<
"--------------------------------------" << endl
1172 cout <<
"List of TopNodes in Fun4AllServer:" << endl;
1174 map<std::string, PHCompositeNode *>::const_iterator iter;
1177 cout << iter->first <<
" is at " << hex
1178 << iter->second << dec << endl;
1182 if (what ==
"ALL" || what ==
"NODETREE")
1185 cout <<
"--------------------------------------" << endl
1187 cout <<
"List of Nodes in Fun4AllServer:" << endl;
1189 map<std::string, PHCompositeNode *>::const_iterator iter;
1192 cout <<
"Node Tree under TopNode " << iter->first << endl;
1204 out <<
"Fun4AllServer Name: " <<
ThisName << endl;
1214 cout <<
"Erasing OutputManager "
1216 <<
" at memory location " << *(
OutputManager.begin()) << endl;
1239 map<string, PHCompositeNode *>::const_iterator iter;
1243 return iter->second;
1250 return iter->second;
1252 cout <<
PHWHERE <<
" Could not create new topNode " << name
1253 <<
" send email to off-l with the following printout: " << endl;
1256 cout << iter->first <<
" is at " << hex << iter->second << endl;
1263 map<string, PHCompositeNode *>::const_iterator iter;
1295 vector<Fun4AllSyncManager *>::const_iterator iter;
1298 if ((*iter)->getInputManager(name))
1300 return (*iter)->getInputManager(name);
1303 cout <<
"Could not locate input manager " << name << endl;
1321 static bool run_number_forced = rc->
FlagExist(
"RUNNUMBER");
1322 static int ifirst = 1;
1323 if (ifirst && run_number_forced)
1326 cout <<
"Fun4AllServer: Runnumber forced to " <<
runnumber <<
" by RUNNUMBER IntFlag" << endl;
1331 vector<Fun4AllSyncManager *>::const_iterator iter;
1334 int resetnodetree = 0;
1339 cout <<
"executing run for input master " << (*iter)->Name() << endl;
1341 int retval = (*iter)->run(1);
1367 (*iter)->PushBackInputMgrsEvents(1);
1378 int runno = (*iter)->CurrentRun();
1382 if (currentrun == 0)
1388 if (currentrun != runno)
1390 cout <<
"Mixing of Runs within same event is not supported" << endl;
1391 cout <<
"Here is the list of Sync Managers and their runnumbers:" << endl;
1392 vector<Fun4AllSyncManager *>::const_iterator syiter;
1395 cout << (*syiter)->Name() <<
" run number: " << (*syiter)->CurrentRun() << endl;
1397 cout <<
"Exiting now" << endl;
1405 if (currentrun !=
runnumber && !run_number_forced)
1413 else if (!run_number_forced)
1428 const double significand = icnt / pow(10, (
int) (log10(icnt)));
1430 if ((fmod(significand, 1.0) == 0 && significand <= 10) or icnt == 0)
1432 cout <<
"Fun4AllServer::run - process_event cycle "
1434 if (require_nevents)
1435 cout <<
", " << icnt_good <<
" good event so far";
1454 if (require_nevents)
1460 if (iret || (nevnts > 0 && icnt_good >= nevnts))
1463 else if (iret || (nevnts > 0 && ++icnt >= nevnts))
1475 vector<Fun4AllSyncManager *>::const_iterator iter;
1478 iret += (*iter)->skip(nevnts);
1487 vector<Fun4AllSyncManager *>::const_iterator iter;
1490 iret += (*iter)->fileopen(managername, filename);
1498 vector<Fun4AllSyncManager *>::const_iterator iter;
1501 iret += (*iter)->BranchSelect(managername, branch, iflag);
1509 vector<Fun4AllSyncManager *>::const_iterator iter;
1512 iret += (*iter)->BranchSelect(branch, iflag);
1520 vector<Fun4AllSyncManager *>::const_iterator iter;
1523 iret += (*iter)->setBranches(managername);
1531 vector<Fun4AllSyncManager *>::const_iterator iter;
1534 iret += (*iter)->setBranches();
1542 vector<Fun4AllSyncManager *>::const_iterator iter;
1545 iret += (*iter)->fileclose(managername);
1570 map<string, PHCompositeNode *>::const_iterator iter;
1573 names.push_back(iter->first);
1575 return names.size();
1581 vector<Fun4AllOutputManager *>::const_iterator iter;
1584 names.push_back((*iter)->Name());
1592 vector<pair<SubsysReco *, PHCompositeNode *> >::const_iterator iter;
1595 names.push_back((*iter).first->Name());
1604 if (syncman->
Name() == newmaster->
Name())
1606 cout <<
"Input Master " << newmaster->
Name()
1607 <<
" already registered" << endl;
1613 cout <<
"Registering Input Master " << newmaster->
Name() << endl;
1622 if (name ==
"DefaultSyncManager")
1626 vector<Fun4AllSyncManager *>::iterator iter;
1630 if ((*iter)->Name() == name)
1635 cout <<
"Could not find Input Master " << name << endl;
1670 cout <<
"Could not locate node " << name
1671 <<
" or no PHObject Node" << endl;
1678 map<const string, PHTimer2>::const_iterator iter;
1683 iter->second.print_stat();
1691 iter->second.print_stat();
1695 cout <<
"No timer with name " << name <<
" found" << endl;
1696 cout <<
"Existing timers:" << endl;
1699 cout << iter->first << endl;
static const int NFRAMEWORKBINS
int verbosity
The verbosity level. 0 means not verbose at all.
virtual const std::string Name() const
Returns the name of this module.
@ VERBOSITY_QUIET
Quiet mode. Only output critical messages. Intended for batch production mode.
@ VERBOSITY_EVEN_MORE
Output even more messages.
@ VERBOSITY_MORE
Output more messages.
@ VERBOSITY_SOME
Output some useful messages during manual command line running.
void setOutfileName(const std::string &filename)
const char * getHistoName(const unsigned int ihisto) const
bool registerHisto(const std::string &hname, TNamed *h1d, const int replace=0)
TNamed * getHisto(const std::string &hname) const
int isHistoRegistered(const std::string &name) const
void Print(const std::string &what="ALL") const
virtual std::vector< std::string > * EventSelector()
retrieves pointer to vector of event selector module names
virtual std::vector< unsigned > * RecoModuleIndex()
retrieves pointer to vector of event selector module ids
virtual void Print(const std::string &what="ALL") const
print method (dump event selector)
void GetModuleList(std::vector< std::string > &names) const
int registerSubsystem(SubsysReco *subsystem, const std::string &topnodename="TOP")
Fun4AllInputManager * getInputManager(const char *name)
int run(const int nevnts=0, const bool require_nevents=false)
run n events (0 means up to end of file)
virtual int DisconnectDB()
std::vector< std::string > ComplaintList
virtual int isHistoRegistered(const std::string &name) const
void GetOutputManagerList(std::vector< std::string > &names) const
void ReadSpillTimer(double &time_subsys, double &time_output)
int InitNodeTree(PHCompositeNode *topNode)
Fun4AllSyncManager * defaultSyncManager
int CountOutNodesRecursive(PHCompositeNode *startNode, const int icount)
int registerHistoManager(Fun4AllHistoManager *manager)
int unregisterSubsystemsNow()
static Fun4AllServer * instance()
std::vector< std::pair< SubsysReco *, PHCompositeNode * > > Subsystems
const char * getHistoName(const unsigned int ihisto) const
int AddComplaint(const std::string &complaint, const std::string &remedy)
virtual bool registerHisto(const char *hname, TNamed *h1d, const int replace=0)
virtual int EndRun(const int runno=0)
int UpdateEventSelector(Fun4AllOutputManager *manager)
std::vector< int > RetCodes
int dumpHistos(const std::string &filename="", const std::string &openmode="RECREATE")
std::vector< Fun4AllOutputManager * > OutputManager
std::vector< Fun4AllSyncManager * > SyncManagers
virtual int process_event()
PHCompositeNode * topNode() const
int CountOutNodes(PHCompositeNode *startNode)
PHTimer2 * timer_sp_output
Measure the time used by OutputManager in process_event().
int AddTopNode(const std::string &name)
int BranchSelect(const char *managername, const char *branch, int iflag)
int fileopen(const char *managername="NONE", const char *filename="NONE")
Fun4AllSyncManager * getSyncManager(const std::string &name="DefaultSyncManager")
int registerSyncManager(Fun4AllSyncManager *newmaster)
std::vector< Fun4AllHistoManager * > HistoManager
PHTimer2 * timer_sp_subsys
Measure the time used by SubsysReco in process_event().
Fun4AllServer(const std::string &name="Fun4AllServer")
int MakeNodesTransient(PHCompositeNode *startNode)
PHCompositeNode * TopNode
int registerOutputManager(Fun4AllOutputManager *manager)
void NodeIdentify(const std::string &name)
TNamed * getHisto(const std::string &hname) const
int unregisterSubsystem(SubsysReco *subsystem)
virtual void identify(std::ostream &out=std::cout) const
int skip(const int nevnts=0)
skip n events (0 means up to the end of file). Skip means read, don't process.
int registerInputManager(Fun4AllInputManager *InManager)
std::vector< std::pair< SubsysReco *, PHCompositeNode * > > DeleteSubsystems
std::string default_Tdirectory
std::map< const std::string, PHTimer2 > timer_map
Fun4AllOutputManager * getOutputManager(const std::string &name)
PHCompositeNode * getNode(const char *name, const char *topnodename="TOP")
unsigned GetTopNodes(std::vector< std::string > &names) const
std::map< int, int > retcodesmap
void GetInputFullFileList(std::vector< std::string > &fnames) const
SubsysReco * getSubsysReco(const std::string &name)
int MakeNodesPersistent(PHCompositeNode *startNode)
int setRun(const int runno)
PHTimeStamp * beginruntimestamp
Fun4AllHistoManager * ServerHistoManager
std::vector< TDirectory * > TDirCollection
virtual void Print(const std::string &what="ALL") const
void PrintTimer(const std::string &name="")
std::map< std::string, PHCompositeNode * > topnodemap
Fun4AllHistoManager * getHistoManager(const std::string &name)
int fileclose(const std::string &managername="")
static Fun4AllServer * __instance
virtual int BeginRun(const int runno)
int BeginRunTimeStamp(PHTimeStamp &TimeStp)
void TotalEvents(const int i)
int registerInputManager(Fun4AllInputManager *InManager)
void SegmentNumber(const int iseg)
void PrdfEvents(const int i)
void Print(const std::string &what="ALL") const
void GetInputFullFileList(std::vector< std::string > &fnames) const
PHBoolean addNode(PHNode *)
virtual int FlagExist(const std::string &name) const
virtual void set_IntFlag(const std::string &name, const int flag)
virtual int get_IntFlag(const std::string &name) const
PHPointerList< PHNode > & ls()
PHBoolean cd(const std::string &pathString="")
PHNode * findFirst(const std::string &, const std::string &)
void forEach(PHNodeOperation &)
virtual void Verbosity(const int i)
const std::string getType() const
const std::string getName() const
virtual void identify(std::ostream &os=std::cout) const
Class to measure the time spent by a code block.
double get_accumulated_time() const
virtual int Init(PHCompositeNode *)
static recoConsts * instance()