Class Reference for E1039 Core & Analysis Software
Fun4AllServer.cc
Go to the documentation of this file.
1 #include "Fun4AllServer.h"
2 #include "Fun4AllHistoBinDefs.h"
3 #include "Fun4AllInputManager.h"
4 #include "Fun4AllOutputManager.h"
5 #include "Fun4AllReturnCodes.h"
6 #include "Fun4AllSyncManager.h"
7 #include "SubsysReco.h"
8 
10 #include <phool/PHDataNode.h>
11 #include <phool/PHNodeIOManager.h>
12 #include <phool/PHNodeIterator.h>
13 #include <phool/PHNodeReset.h>
14 #include <phool/PHObject.h>
16 #include <phool/PHTimeStamp.h>
18 #include <phool/getClass.h>
19 #include <phool/phool.h>
20 #include <phool/recoConsts.h>
21 
22 #include <TDirectory.h>
23 #include <TFile.h>
24 #include <TH1D.h>
25 #include <TNamed.h>
26 #include <TROOT.h>
27 #include <TSystem.h>
28 
29 #include <boost/foreach.hpp>
30 
31 #include <sys/utsname.h>
32 #include <algorithm>
33 #include <cmath>
34 #include <cstdlib>
35 #include <exception>
36 #include <iostream>
37 #include <sstream>
38 
39 using namespace std;
40 
42 
44 {
45  if (__instance)
46  {
47  return __instance;
48  }
49  __instance = new Fun4AllServer();
50  return __instance;
51 }
52 
53 Fun4AllServer::Fun4AllServer(const std::string &name)
54  : Fun4AllBase(name)
55  , OutNodeCount(0)
56  , bortime_override(0)
57  , ScreamEveryEvent(0)
58  , unregistersubsystem(0)
59  , runnumber(0)
60  , eventnumber(0)
61  , beginruntimestamp(nullptr)
62  , timer_sp_subsys(0)
63  , timer_sp_output(0)
64  , keep_db_connected(0)
65 {
66  InitAll();
67  return;
68 }
69 
71 {
72  Reset();
73  delete beginruntimestamp;
74  while (Subsystems.begin() != Subsystems.end())
75  {
77  {
78  Subsystems.back().first->Verbosity(verbosity);
79  }
80  delete Subsystems.back().first;
81  Subsystems.pop_back();
82  }
83  while (HistoManager.begin() != HistoManager.end())
84  {
86  {
87  HistoManager.back()->Verbosity(verbosity);
88  }
89  delete HistoManager.back();
90  HistoManager.pop_back();
91  }
92  while (OutputManager.begin() != OutputManager.end())
93  {
95  {
96  OutputManager.back()->Verbosity(verbosity);
97  }
98  delete OutputManager.back();
99  OutputManager.pop_back();
100  }
101  while (SyncManagers.begin() != SyncManagers.end())
102  {
103  SyncManagers.back()->Verbosity(verbosity);
104  delete SyncManagers.back();
105  SyncManagers.pop_back();
106  }
107  while (topnodemap.begin() != topnodemap.end())
108  {
109  if (verbosity >= VERBOSITY_MORE)
110  {
111  topnodemap.begin()->second->print();
112  }
113  delete topnodemap.begin()->second;
114  topnodemap.erase(topnodemap.begin());
115  }
116  while (TDirCollection.begin() != TDirCollection.end())
117  {
118  delete TDirCollection.back();
119  TDirCollection.pop_back();
120  }
121  if (timer_sp_subsys) delete timer_sp_subsys;
122  if (timer_sp_output) delete timer_sp_output;
123 
125  delete rc;
126  __instance = nullptr;
127  return;
128 }
129 
131 {
132  // first remove stupid root signal handler to get
133  // decent crashes with debuggable core file
134  for (int i = 0; i < kMAXSIGNALS; i++)
135  {
136  gSystem->IgnoreSignal((ESignals) i);
137  }
138  ostringstream histomanagername;
139  histomanagername << Name() << "HISTOS";
140  ServerHistoManager = new Fun4AllHistoManager(histomanagername.str());
142  double uplim = NFRAMEWORKBINS - 0.5;
143  FrameWorkVars = new TH1D("FrameWorkVars", "FrameWorkVars", NFRAMEWORKBINS, -0.5, uplim);
144  registerHisto("FrameWorkVars", FrameWorkVars);
145  defaultSyncManager = new Fun4AllSyncManager("DefaultSyncManager");
146  SyncManagers.push_back(defaultSyncManager);
147  TopNode = new PHCompositeNode("TOP");
148  topnodemap["TOP"] = TopNode;
149  default_Tdirectory = gDirectory->GetPath();
151 
152  timer_map["process_event_01"] = PHTimer2("process_event_01_prep");
153  timer_map["process_event_02"] = PHTimer2("process_event_02_subsys");
154  timer_map["process_event_03"] = PHTimer2("process_event_03_output");
155  timer_map["process_event_04"] = PHTimer2("process_event_04_reset");
156 
157  timer_sp_subsys = new PHTimer2("timer_sp_subsys");
158  timer_sp_output = new PHTimer2("timer_sp_output");
159 
160  return;
161 }
162 
163 int Fun4AllServer::dumpHistos(const string &filename, const string &openmode)
164 {
165  int iret = 0;
166  cout << "Fun4AllServer::dumpHistos() dumping histograms" << endl;
167  if (!filename.empty())
168  {
170  }
171  vector<Fun4AllHistoManager *>::const_iterator hiter;
172  for (hiter = HistoManager.begin(); hiter != HistoManager.end(); ++hiter)
173  {
174  iret += (*hiter)->dumpHistos("", openmode);
175  }
176  return iret;
177 }
178 
179 bool Fun4AllServer::registerHisto(TNamed *h1d, const int replace)
180 {
181  return ServerHistoManager->registerHisto(h1d, replace);
182 }
183 
184 bool Fun4AllServer::registerHisto(const char *hname, TNamed *h1d, const int replace)
185 {
186  return ServerHistoManager->registerHisto(hname, h1d, replace);
187 }
188 
189 int Fun4AllServer::isHistoRegistered(const string &name) const
190 {
191  int iret = ServerHistoManager->isHistoRegistered(name);
192  return iret;
193 }
194 
195 int Fun4AllServer::registerSubsystem(SubsysReco *subsystem, const string &topnodename)
196 {
198  // if somebody opens a TFile (or changes the gDirectory) in the ctor
199  // we need to set it to a "known" directory
200  gROOT->cd(default_Tdirectory.c_str());
201  string currdir = gDirectory->GetPath();
202  TDirectory *tmpdir = gDirectory;
203  if (!tmpdir->FindObject(topnodename.c_str()))
204  {
205  tmpdir = tmpdir->mkdir(topnodename.c_str());
206  if (!tmpdir)
207  {
208  cout << "Error creating TDirectory topdir " << topnodename.c_str() << endl;
209  exit(1);
210  }
211  // store the TDir pointer so it can be cleaned up in the dtor
212  // if one deletes it here the Histograms are dangling somewhere
213  // in root (at least according to valgrind the delete doesn't work
214  // properly anymore)
215  TDirCollection.push_back(tmpdir);
216  }
217  gROOT->cd(topnodename.c_str());
218  tmpdir = gDirectory;
219  if (!tmpdir->FindObject(subsystem->Name().c_str()))
220  {
221  tmpdir = tmpdir->mkdir(subsystem->Name().c_str());
222  if (!tmpdir)
223  {
224  cout << "Error creating TDirectory subdir " << subsystem->Name() << endl;
225  exit(1);
226  }
227  // store the TDir pointer so it can be cleaned up in the dtor
228  // if one deletes it here the Histograms are dangling somewhere
229  // in root
230  TDirCollection.push_back(tmpdir);
231  }
232  PHCompositeNode *subsystopNode = se->topNode(topnodename);
233  pair<SubsysReco *, PHCompositeNode *> newsubsyspair(subsystem, subsystopNode);
234  int iret = 0;
235  try
236  {
237  iret = subsystem->Init(subsystopNode);
238  }
239  catch (const exception &e)
240  {
241  cout << PHWHERE << " caught exception thrown during SubsysReco::Init() from "
242  << subsystem->Name() << endl;
243  cout << "error: " << e.what() << endl;
244  exit(1);
245  }
246  catch (...)
247  {
248  cout << PHWHERE << " caught unknown type exception thrown during SubsysReco::Init() from "
249  << subsystem->Name() << endl;
250  exit(1);
251  }
252  gROOT->cd(currdir.c_str());
253  if (iret)
254  {
256  {
257  if (verbosity >= VERBOSITY_SOME)
258  {
259  cout << "Not Registering Subsystem " << subsystem->Name() << endl;
260  }
261  return 0;
262  }
263  cout << PHWHERE << " Error initializing subsystem "
264  << subsystem->Name() << ", return code: " << iret << endl;
265  return iret;
266  }
267  if (verbosity >= VERBOSITY_SOME)
268  {
269  cout << "Registering Subsystem " << subsystem->Name() << endl;
270  }
271  Subsystems.push_back(newsubsyspair);
272  ostringstream timer_name;
273  timer_name << subsystem->Name() << "_" << topnodename;
274  PHTimer2 timer(timer_name.str());
275  if (timer_map.find(timer_name.str()) == timer_map.end())
276  {
277  timer_map[timer_name.str()] = timer;
278  }
279  RetCodes.push_back(iret); // vector with return codes
280  return 0;
281 }
282 
284 {
285  pair<SubsysReco *, PHCompositeNode *> subsyspair(subsystem, 0);
286  DeleteSubsystems.push_back(subsyspair);
288  return 0;
289 }
290 
292 {
293  vector<pair<SubsysReco *, PHCompositeNode *> >::iterator sysiter, removeiter;
294  for (removeiter = DeleteSubsystems.begin();
295  removeiter != DeleteSubsystems.end();
296  ++removeiter)
297  {
298  int index = 0;
299  int foundit = 0;
300  for (sysiter = Subsystems.begin(); sysiter != Subsystems.end(); ++sysiter)
301  {
302  if ((*sysiter).first == (*removeiter).first)
303  {
304  foundit = 1;
305  break;
306  }
307  index++;
308  }
309  if (!foundit)
310  {
311  cout << "unregisterSubsystem: Could not find SubsysReco "
312  << (*removeiter).first->Name()
313  << " in Fun4All Reco Module list" << endl;
314  delete (*removeiter).first;
315  continue;
316  }
317  if (verbosity >= VERBOSITY_MORE)
318  {
319  cout << "Removing Subsystem: " << (*removeiter).first->Name()
320  << " at index " << index << endl;
321  }
322  Subsystems.erase(Subsystems.begin() + index);
323  delete (*removeiter).first;
324  // also update the vector with return codes
325  RetCodes.erase(RetCodes.begin() + index);
326  vector<Fun4AllOutputManager *>::iterator outiter;
327  for (outiter = OutputManager.begin(); outiter != OutputManager.end(); ++outiter)
328  {
329  UpdateEventSelector(*outiter);
330  }
331  }
333  DeleteSubsystems.clear();
334  return 0;
335 }
336 
337 SubsysReco *
338 Fun4AllServer::getSubsysReco(const string &name)
339 {
340  vector<pair<SubsysReco *, PHCompositeNode *> >::iterator sysiter;
341  for (sysiter = Subsystems.begin(); sysiter != Subsystems.end(); ++sysiter)
342  {
343  if ((*sysiter).first->Name() == name)
344  {
346  {
347  cout << "Found Subsystem " << name << endl;
348  }
349  return (*sysiter).first;
350  }
351  }
352  cout << "Could not find SubsysReco " << name << endl;
353  return 0;
354 }
355 
356 int Fun4AllServer::AddComplaint(const string &complaint, const string &remedy)
357 {
359  string separatorstring = "------------------------------";
360  ostringstream complaintno;
361  complaintno << "Problem No " << ScreamEveryEvent;
362 
363  ComplaintList.push_back(separatorstring);
364  ComplaintList.push_back(complaintno.str());
365  ComplaintList.push_back(complaint);
366  ComplaintList.push_back(" ");
367  ComplaintList.push_back("Remedy:");
368  ComplaintList.push_back(remedy);
369  ComplaintList.push_back(separatorstring);
370  return 0;
371 }
372 
374 {
375  vector<Fun4AllOutputManager *>::iterator iter;
376  for (iter = OutputManager.begin(); iter != OutputManager.end(); ++iter)
377  {
378  if ((*iter)->Name() == manager->Name())
379  {
380  cout << "OutputManager " << manager->Name() << " allready in list" << endl;
381  return -1;
382  }
383  }
384  if (verbosity >= VERBOSITY_SOME)
385  {
386  cout << "Registering OutputManager " << manager->Name() << endl;
387  }
388  UpdateEventSelector(manager);
389  OutputManager.push_back(manager);
390  return 0;
391 }
392 
394 {
395  vector<string>::iterator striter;
396  vector<pair<SubsysReco *, PHCompositeNode *> >::const_iterator subsysiter;
397 
398 tryagain:
399  manager->RecoModuleIndex()->clear();
400  for (striter = manager->EventSelector()->begin(); striter != manager->EventSelector()->end(); ++striter)
401  {
403  {
404  cout << PHWHERE << "striter: " << *striter << endl;
405  }
406  unsigned index = 0;
407  int found = 0;
408  for (subsysiter = Subsystems.begin(); subsysiter != Subsystems.end(); ++subsysiter)
409  {
410  if (*striter == (*subsysiter).first->Name())
411  {
412  manager->RecoModuleIndex()->push_back(index);
414  {
415  cout << PHWHERE << "setting RecoModuleIndex to " << index << endl;
416  }
417  found = 1;
418  break;
419  }
420  index++;
421  }
422  if (!found)
423  {
424  cout << "Could not find module " << *striter
425  << ", removing it from list of event selector modules" << endl;
426  manager->EventSelector()->erase(striter);
427  goto tryagain;
428  }
429  }
430  return 0;
431 }
432 
435 {
436  vector<Fun4AllOutputManager *>::iterator iter;
437  for (iter = OutputManager.begin(); iter != OutputManager.end(); ++iter)
438  {
439  if (name == (*iter)->Name())
440  {
442  {
443  cout << "Found OutputManager " << name << endl;
444  }
445  return *iter;
446  }
447  }
448  cout << "Could not find OutputManager" << name << endl;
449  return 0;
450 }
451 
454 {
455  vector<Fun4AllHistoManager *>::iterator iter;
456  for (iter = HistoManager.begin(); iter != HistoManager.end(); ++iter)
457  {
458  if ((*iter)->Name() == name)
459  {
461  {
462  cout << "Found HistoManager " << name << endl;
463  }
464  return *iter;
465  }
466  }
467  if (verbosity >= VERBOSITY_MORE)
468  {
469  cout << "Could not find HistoManager " << name << endl;
470  }
471  return 0;
472 }
473 
475 {
476  vector<Fun4AllHistoManager *>::iterator iter;
477  for (iter = HistoManager.begin(); iter != HistoManager.end(); ++iter)
478  {
479  if ((*iter)->Name() == manager->Name())
480  {
481  cout << "HistoManager " << manager->Name() << " allready in list" << endl;
482  return -1;
483  }
484  }
485  if (verbosity >= VERBOSITY_SOME)
486  {
487  cout << "Registering HistoManager " << manager->Name() << endl;
488  }
489  HistoManager.push_back(manager);
490  return 0;
491 }
492 
493 TNamed *
494 Fun4AllServer::getHisto(const unsigned int ihisto) const
495 {
496  return ServerHistoManager->getHisto(ihisto);
497 }
498 
499 const char *
500 Fun4AllServer::getHistoName(const unsigned int ihisto) const
501 {
502  return (ServerHistoManager->getHistoName(ihisto));
503 }
504 
505 TNamed *Fun4AllServer::getHisto(const string &hname) const
506 {
507  return (ServerHistoManager->getHisto(hname));
508 }
509 
511 {
512  int iret = process_event();
513  return iret;
514 }
515 
517 {
518  timer_map["process_event_01"].restart();
519  vector<pair<SubsysReco *, PHCompositeNode *> >::iterator iter;
520  unsigned icnt = 0;
521  int eventbad = 0;
522  if (ScreamEveryEvent)
523  {
524  cout << "*******************************************************************************" << endl;
525  cout << "*******************************************************************************" << endl;
526  cout << "*******************************************************************************" << endl;
527  cout << "Now that I have your attention, please fix the following "
528  << ScreamEveryEvent << " problem(s):" << endl;
529  vector<string>::const_iterator viter;
530  for (viter = ComplaintList.begin(); viter != ComplaintList.end(); ++viter)
531  {
532  cout << *viter << endl;
533  }
534  cout << " " << endl;
535  cout << "*******************************************************************************" << endl;
536  cout << "*******************************************************************************" << endl;
537  cout << "*******************************************************************************" << endl;
538  }
540  {
542  }
543  timer_map["process_event_01"].stop();
544 
545  timer_map["process_event_02"].restart();
547 
548  gROOT->cd(default_Tdirectory.c_str());
549  string currdir = gDirectory->GetPath();
550  for (iter = Subsystems.begin(); iter != Subsystems.end(); ++iter)
551  {
552  if (verbosity >= VERBOSITY_MORE)
553  {
554  cout << "Fun4AllServer::process_event processing " << (*iter).first->Name() << endl;
555  }
556  ostringstream newdirname;
557  newdirname << (*iter).second->getName() << "/" << (*iter).first->Name();
558  if (!gROOT->cd(newdirname.str().c_str()))
559  {
560  cout << PHWHERE << "Unexpected TDirectory Problem cd'ing to "
561  << (*iter).second->getName()
562  << " - send e-mail to off-l with your macro" << endl;
563  exit(1);
564  }
565  else
566  {
568  {
569  cout << "process_event: cded to " << newdirname.str().c_str() << endl;
570  }
571  }
572 
573  try
574  {
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;
579  if (titer != timer_map.end())
580  {
581  timer_found = true;
582  titer->second.restart();
583  }
584  else
585  {
586  cout << "could not find timer for " << timer_name.str() << endl;
587  }
588  RetCodes[icnt] = (*iter).first->process_event((*iter).second);
589  if (timer_found)
590  {
591  titer->second.stop();
592  }
593 
594  }
595  catch (const exception &e)
596  {
597  cout << PHWHERE << " caught exception thrown during process_event from "
598  << (*iter).first->Name() << endl;
599  cout << "error: " << e.what() << endl;
600  exit(1);
601  }
602  catch (...)
603  {
604  cout << PHWHERE << " caught unknown type exception thrown during process_event from "
605  << (*iter).first->Name() << endl;
606  exit(1);
607  }
608  if (RetCodes[icnt])
609  {
611  {
613  {
614  cout << "Fun4AllServer::Discard Event by " << (*iter).first->Name() << endl;
615  }
616  }
617  else if (RetCodes[icnt] == Fun4AllReturnCodes::ABORTEVENT)
618  {
620  eventbad = 1;
621  if (verbosity >= VERBOSITY_MORE)
622  {
623  cout << "Fun4AllServer::Abort Event by " << (*iter).first->Name() << endl;
624  }
625  break;
626  }
627  else if (RetCodes[icnt] == Fun4AllReturnCodes::ABORTRUN)
628  {
630  cout << "Fun4AllServer::Abort Run by " << (*iter).first->Name() << endl;
632  }
633  else
634  {
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;
643  }
644  }
645  icnt++;
646  }
647  if (!eventbad)
648  {
650  }
651  timer_map["process_event_02"].stop();
653 
654  timer_map["process_event_03"].restart();
656  gROOT->cd(currdir.c_str());
657 
658  // mainIter.print();
659  if (!OutputManager.empty() && !eventbad) // there are registered IO managers and
660  // the event is not flagged bad
661  {
662  PHNodeIterator iter(TopNode);
663  PHCompositeNode *dstNode = dynamic_cast<PHCompositeNode *>(iter.findFirst("PHCompositeNode", "DST"));
664 
665  if (dstNode)
666  {
667  // check if we have same number of nodes. After first event is
668  // written out root I/O doesn't permit adding nodes, otherwise
669  // events get out of sync
670  static int first = 1;
671  int newcount = CountOutNodes(dstNode);
672  if (first)
673  {
674  first = 0;
675  OutNodeCount = newcount; // save number of nodes before first write
676  MakeNodesTransient(dstNode); // make all nodes transient before 1st write in case someone sneaked a node in at the first event
677  }
678 
679  if (OutNodeCount != newcount)
680  {
681  iter.print();
682  cout << PHWHERE << " FATAL: Someone changed the number of Output Nodes on the fly, from " << OutNodeCount << " to " << newcount << endl;
683  exit(1);
684  }
685  vector<Fun4AllOutputManager *>::iterator iterOutMan;
686  for (iterOutMan = OutputManager.begin(); iterOutMan != OutputManager.end(); ++iterOutMan)
687  {
688  if (!(*iterOutMan)->DoNotWriteEvent(&RetCodes))
689  {
690  if (verbosity >= VERBOSITY_MORE)
691  {
692  cout << "Writing Event for " << (*iterOutMan)->Name() << endl;
693  }
694  (*iterOutMan)->WriteGeneric(dstNode);
695  }
696  else
697  {
698  if (verbosity >= VERBOSITY_MORE)
699  {
700  cout << "Not Writing Event for " << (*iterOutMan)->Name() << endl;
701  }
702  }
703  }
704  }
705  }
706  timer_map["process_event_03"].stop();
708 
709  timer_map["process_event_04"].restart();
710  for (iter = Subsystems.begin(); iter != Subsystems.end(); ++iter)
711  {
713  {
714  cout << "Fun4AllServer::process_event Resetting Event " << (*iter).first->Name() << endl;
715  }
716  (*iter).first->ResetEvent((*iter).second);
717  }
718  BOOST_FOREACH (Fun4AllSyncManager *syncman, SyncManagers)
719  {
721  {
722  cout << "Fun4AllServer::process_event Resetting Event for Sync Manager " << syncman->Name() << endl;
723  }
724  syncman->ResetEvent();
725  }
726  ResetNodeTree();
727  timer_map["process_event_04"].stop();
728 
729  return 0;
730 }
731 
733 {
734  vector<string> ResetNodeList;
735  ResetNodeList.push_back("DST");
736  PHNodeReset reset;
737  reset.Verbosity(verbosity>0 ? verbosity-1: 0); // one lower verbosity level than Fun4AllServer
738  map<string, PHCompositeNode *>::const_iterator iter;
739  for (iter = topnodemap.begin(); iter != topnodemap.end(); ++iter)
740  {
741  PHNodeIterator mainIter((*iter).second);
742  for (vector<string>::const_iterator nodename = ResetNodeList.begin();
743  nodename != ResetNodeList.end(); ++nodename)
744  {
745  if (mainIter.cd(*nodename))
746  {
747  mainIter.forEach(reset);
748  mainIter.cd();
749  }
750  }
751  }
752  return 0; // anything except 0 would abort the event loop in pmonitor
753 }
754 
756 {
757  int i = 0;
758  vector<pair<SubsysReco *, PHCompositeNode *> >::iterator iter;
759  for (iter = Subsystems.begin(); iter != Subsystems.end(); ++iter)
760  {
762  {
763  cout << "Fun4AllServer::Reset Resetting " << (*iter).first->Name() << endl;
764  }
765  i += (*iter).first->Reset((*iter).second);
766  }
767  vector<Fun4AllHistoManager *>::iterator hiter;
768  for (hiter = HistoManager.begin(); hiter != HistoManager.end(); ++hiter)
769  {
770  (*hiter)->Reset();
771  }
772  return i;
773 }
774 
776 {
777  beginruntimestamp = new PHTimeStamp(TimeStp);
778  cout << "Setting BOR timestamp to ";
780  cout << endl;
781  bortime_override = 1;
782  return 0;
783 }
784 
785 int Fun4AllServer::BeginRun(const int runno)
786 {
787  if (!bortime_override)
788  {
789  if (beginruntimestamp)
790  {
791  delete beginruntimestamp;
792  }
794  }
795  else
796  {
797  cout << "overriding BOR timestamp by ";
799  cout << endl;
800  //rc->set_TimeStamp(*beginruntimestamp);
801  }
802  if (verbosity >= VERBOSITY_SOME)
803  {
804  cout << "Fun4AllServer::BeginRun: Run number " << runno << " uses RECO TIMESTAMP: ";
806  cout << endl;
807  }
808  vector<pair<SubsysReco *, PHCompositeNode *> >::iterator iter;
809  int iret;
810 
811  // check if any registered SubsysReco wants to be dropped and
812  // remove it from the list before its BeginRun is executed
814  {
816  }
817 
818  // we have to do the same TDirectory games as in the Init methods
819  // save the current dir, cd to the subsystem name dir (which was
820  // created in init) call the InitRun of the module and cd back
821 
822  gROOT->cd(default_Tdirectory.c_str());
823  string currdir = gDirectory->GetPath();
824  for (iter = Subsystems.begin(); iter != Subsystems.end(); ++iter)
825  {
826  ostringstream newdirname;
827  newdirname << (*iter).second->getName() << "/" << (*iter).first->Name();
828  if (!gROOT->cd(newdirname.str().c_str()))
829  {
830  cout << PHWHERE << "Unexpected TDirectory Problem cd'ing to "
831  << (*iter).second->getName()
832  << " - send e-mail to off-l with your macro" << endl;
833  exit(1);
834  }
835  else
836  {
838  {
839  cout << "BeginRun: cded to " << newdirname.str().c_str() << endl;
840  }
841  }
842 
843  if (verbosity >= VERBOSITY_SOME)
844  {
845  cout << "Fun4AllServer::BeginRun: InitRun for " << (*iter).first->Name() << endl;
846  }
847  try
848  {
849  iret = (*iter).first->InitRun((*iter).second);
850  }
851  catch (const exception &e)
852  {
853  cout << PHWHERE << " caught exception thrown during SubsysReco::InitRun() from "
854  << (*iter).first->Name() << endl;
855  cout << "error: " << e.what() << endl;
856  exit(1);
857  }
858  catch (...)
859  {
860  cout << PHWHERE << " caught unknown type exception thrown during SubsysReco::InitRun() from "
861  << (*iter).first->Name() << endl;
862  exit(1);
863  }
864 
865  if (iret == Fun4AllReturnCodes::ABORTRUN)
866  {
867  cout << PHWHERE << "Module " << (*iter).first->Name() << " issued Abort Run, exiting" << endl;
868  exit(-1);
869  }
870  else if (iret != Fun4AllReturnCodes::EVENT_OK)
871  {
872  cout << PHWHERE << "Module " << (*iter).first->Name() << " issued non Fun4AllReturnCodes::EVENT_OK return code " << iret << " in InitRun()" << endl;
873  exit(-2);
874  }
875  }
876  gROOT->cd(currdir.c_str());
877 
878  // disconnect from DB to save resources on DB machine
879  // PdbCal leaves the DB connection open (PdbCal will reconnect without
880  // problem if neccessary)
881  if (!keep_db_connected)
882  {
883  DisconnectDB();
884  }
885  else
886  {
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;
892  }
893  // print out all node trees
894  Print("NODETREE");
895  return 0;
896 }
897 
899 {
900  int icount = 0;
901  icount = CountOutNodesRecursive(startNode, icount);
902  return icount;
903 }
904 
906 {
907  PHNodeIterator nodeiter(startNode);
908  PHPointerListIterator<PHNode> iterat(nodeiter.ls());
909  PHNode *thisNode;
910  int icnt = icount;
911  while ((thisNode = iterat()))
912  {
913  if ((thisNode->getType() == "PHCompositeNode"))
914  {
915  icnt = CountOutNodesRecursive(static_cast<PHCompositeNode *>(thisNode), icnt); // if this is a CompositeNode do this trick again
916  }
917  else
918  {
919  icnt++;
921  {
922  cout << thisNode->getName() << ", Node Count: " << icnt << endl;
923  }
924  }
925  }
926  return icnt;
927 }
928 
930 {
931  PHNodeIterator nodeiter(startNode);
932  PHPointerListIterator<PHNode> iterat(nodeiter.ls());
933  PHNode *thisNode;
934  while ((thisNode = iterat()))
935  {
936  if ((thisNode->getType() == "PHCompositeNode"))
937  {
938  MakeNodesTransient(static_cast<PHCompositeNode *>(thisNode)); // if this is a CompositeNode do this trick again
939  }
940  else
941  {
942  thisNode->makeTransient();
943  }
944  }
945  return 0;
946 }
947 
949 {
950  PHNodeIterator nodeiter(startNode);
951  PHPointerListIterator<PHNode> iterat(nodeiter.ls());
952  PHNode *thisNode;
953  while ((thisNode = iterat()))
954  {
955  if ((thisNode->getType() == "PHCompositeNode"))
956  {
957  MakeNodesPersistent(static_cast<PHCompositeNode *>(thisNode)); // if this is a CompositeNode do this trick again
958  }
959  else
960  {
961  thisNode->makePersistent();
962  }
963  }
964  return 0;
965 }
966 
967 int Fun4AllServer::EndRun(const int runno)
968 {
969  vector<pair<SubsysReco *, PHCompositeNode *> >::iterator iter;
970  gROOT->cd(default_Tdirectory.c_str());
971  string currdir = gDirectory->GetPath();
972  for (iter = Subsystems.begin(); iter != Subsystems.end(); ++iter)
973  {
974  if (verbosity >= VERBOSITY_MORE)
975  {
976  cout << "Fun4AllServer::EndRun: EndRun("
977  << runno << ") for " << (*iter).first->Name() << endl;
978  }
979  ostringstream newdirname;
980  newdirname << (*iter).second->getName() << "/" << (*iter).first->Name();
981  if (!gROOT->cd(newdirname.str().c_str()))
982  {
983  cout << PHWHERE << "Unexpected TDirectory Problem cd'ing to "
984  << (*iter).second->getName()
985  << " - send e-mail to off-l with your macro" << endl;
986  exit(1);
987  }
988  else
989  {
991  {
992  cout << "EndRun: cded to " << newdirname.str().c_str() << endl;
993  }
994  }
995  try
996  {
997  (*iter).first->EndRun(runno);
998  }
999  catch (const exception &e)
1000  {
1001  cout << PHWHERE << " caught exception thrown during SubsysReco::EndRun() from "
1002  << (*iter).first->Name() << endl;
1003  cout << "error: " << e.what() << endl;
1004  exit(1);
1005  }
1006  catch (...)
1007  {
1008  cout << PHWHERE << " caught unknown type exception thrown during SubsysReco::EndRun() from "
1009  << (*iter).first->Name() << endl;
1010  exit(1);
1011  }
1012  }
1013  gROOT->cd(currdir.c_str());
1014 
1015  return 0;
1016 }
1017 
1019 {
1021  EndRun(rc->get_IntFlag("RUNNUMBER")); // call SubsysReco EndRun methods for current run
1022  int i = 0;
1023  vector<pair<SubsysReco *, PHCompositeNode *> >::iterator iter;
1024  gROOT->cd(default_Tdirectory.c_str());
1025  string currdir = gDirectory->GetPath();
1026  for (iter = Subsystems.begin(); iter != Subsystems.end(); ++iter)
1027  {
1028  if (verbosity >= VERBOSITY_SOME)
1029  {
1030  cout << "Fun4AllServer::End: End for " << (*iter).first->Name() << endl;
1031  }
1032  ostringstream newdirname;
1033  newdirname << (*iter).second->getName() << "/" << (*iter).first->Name();
1034  if (!gROOT->cd(newdirname.str().c_str()))
1035  {
1036  cout << PHWHERE << "Unexpected TDirectory Problem cd'ing to "
1037  << (*iter).second->getName()
1038  << " - send e-mail to off-l with your macro" << endl;
1039  exit(1);
1040  }
1041  else
1042  {
1044  {
1045  cout << "End: cded to " << newdirname.str().c_str() << endl;
1046  }
1047  }
1048  try
1049  {
1050  i += (*iter).first->End((*iter).second);
1051  }
1052  catch (const exception &e)
1053  {
1054  cout << PHWHERE << " caught exception thrown during SusbsysReco::End() from "
1055  << (*iter).first->Name() << endl;
1056  cout << "error: " << e.what() << endl;
1057  exit(1);
1058  }
1059  catch (...)
1060  {
1061  cout << PHWHERE << " caught unknown type exception thrown during SubsysReco::End() from "
1062  << (*iter).first->Name() << endl;
1063  exit(1);
1064  }
1065  }
1066  gROOT->cd(currdir.c_str());
1067  PHNodeIterator nodeiter(TopNode);
1068  PHCompositeNode *runNode = dynamic_cast<PHCompositeNode *>(nodeiter.findFirst("PHCompositeNode", "RUN"));
1069  if (!runNode)
1070  {
1071  cout << "No Run Node, not writing Runwise info" << endl;
1072  }
1073  else
1074  {
1075  if (!OutputManager.empty()) // there are registered IO managers
1076  {
1077  vector<Fun4AllOutputManager *>::iterator IOiter;
1078  for (IOiter = OutputManager.begin(); IOiter != OutputManager.end(); ++IOiter)
1079  {
1080  (*IOiter)->WriteNode(runNode);
1081  }
1082  }
1083  }
1084  // close output files (check for existing output managers is
1085  // done inside outfileclose())
1086  outfileclose();
1087 
1088  if (ScreamEveryEvent)
1089  {
1090  cout << "*******************************************************************************" << endl;
1091  cout << "*******************************************************************************" << endl;
1092  cout << "*******************************************************************************" << endl;
1093  cout << "Now that we are at the End(), please fix the following "
1094  << ScreamEveryEvent << " problem(s):" << endl;
1095  vector<string>::const_iterator viter;
1096  for (viter = ComplaintList.begin(); viter != ComplaintList.end(); ++viter)
1097  {
1098  cout << *viter << endl;
1099  }
1100  cout << " " << endl;
1101  cout << "*******************************************************************************" << endl;
1102  cout << "*******************************************************************************" << endl;
1103  cout << "*******************************************************************************" << endl;
1104  }
1105 
1106  return i;
1107 }
1108 
1109 void Fun4AllServer::Print(const string &what) const
1110 {
1111  if (what == "ALL" || what == "HISTOS")
1112  {
1113  // loop over the map and print out the content (name and location in memory)
1114  BOOST_FOREACH (Fun4AllHistoManager *histoman, HistoManager)
1115  {
1116  histoman->Print(what);
1117  }
1118  }
1119  if (what == "ALL" || what == "SUBSYSTEMS")
1120  {
1121  // loop over the map and print out the content (name and location in memory)
1122  cout << "--------------------------------------" << endl
1123  << endl;
1124  cout << "List of Subsystems in Fun4AllServer:" << endl;
1125 
1126  vector<pair<SubsysReco *, PHCompositeNode *> >::const_iterator miter;
1127  for (miter = Subsystems.begin(); miter != Subsystems.end(); ++miter)
1128  {
1129  cout << (*miter).first->Name()
1130  << " running under topNode " << (*miter).second->getName() << endl;
1131  }
1132  cout << endl;
1133  }
1134 
1135  if (what == "ALL" || what == "INPUTMANAGER")
1136  {
1137  // the input managers are managed by the input singleton
1138  BOOST_FOREACH (Fun4AllSyncManager *syncman, SyncManagers)
1139  {
1140  cout << "SyncManager: " << syncman->Name() << endl;
1141  syncman->Print(what);
1142  }
1143  }
1144 
1145  if (what == "ALL" || what.find("OUTPUTMANAGER") != string::npos)
1146  {
1147  // loop over the map and print out the content (name and location in memory)
1148  string pass_on = what;
1149  if (pass_on == "ALL" || pass_on == "OUTPUTMANAGER")
1150  {
1151  cout << "--------------------------------------" << endl
1152  << endl;
1153  cout << "List of OutputManagers in Fun4AllServer:" << endl;
1154  pass_on = "ALL";
1155  }
1156  else
1157  {
1158  string::size_type pos = pass_on.find("%");
1159  pass_on = pass_on.substr(pos + 1, pass_on.size());
1160  }
1161  BOOST_FOREACH (Fun4AllOutputManager *outman, OutputManager)
1162  {
1163  outman->Print(pass_on);
1164  }
1165  cout << endl;
1166  }
1167  if (what == "ALL" || what == "TOPNODES")
1168  {
1169  // loop over the map and print out the content (name and location in memory)
1170  cout << "--------------------------------------" << endl
1171  << endl;
1172  cout << "List of TopNodes in Fun4AllServer:" << endl;
1173 
1174  map<std::string, PHCompositeNode *>::const_iterator iter;
1175  for (iter = topnodemap.begin(); iter != topnodemap.end(); ++iter)
1176  {
1177  cout << iter->first << " is at " << hex
1178  << iter->second << dec << endl;
1179  }
1180  cout << endl;
1181  }
1182  if (what == "ALL" || what == "NODETREE")
1183  {
1184  // loop over the map and print out the content (name and location in memory)
1185  cout << "--------------------------------------" << endl
1186  << endl;
1187  cout << "List of Nodes in Fun4AllServer:" << endl;
1188 
1189  map<std::string, PHCompositeNode *>::const_iterator iter;
1190  for (iter = topnodemap.begin(); iter != topnodemap.end(); ++iter)
1191  {
1192  cout << "Node Tree under TopNode " << iter->first << endl;
1193  PHNodeIterator nodeiter(iter->second);
1194  nodeiter.print();
1195  cout << endl;
1196  }
1197  cout << endl;
1198  }
1199  return;
1200 }
1201 
1202 void Fun4AllServer::identify(std::ostream &out) const
1203 {
1204  out << "Fun4AllServer Name: " << ThisName << endl;
1205  return;
1206 }
1207 
1209 {
1210  while (!OutputManager.empty())
1211  {
1212  if (verbosity >= VERBOSITY_MORE)
1213  {
1214  cout << "Erasing OutputManager "
1215  << (*OutputManager.begin())->Name()
1216  << " at memory location " << *(OutputManager.begin()) << endl;
1217  }
1218  delete *(OutputManager.begin());
1219  OutputManager.erase(OutputManager.begin());
1220  }
1221  return 0;
1222 }
1223 
1225 {
1226  PHCompositeNode *dstNode, *runNode, *parNode;
1227  dstNode = new PHCompositeNode("DST");
1228  topNode->addNode(dstNode);
1229  runNode = new PHCompositeNode("RUN");
1230  topNode->addNode(runNode);
1231  parNode = new PHCompositeNode("PAR");
1232  topNode->addNode(parNode);
1233  return 0;
1234 }
1235 
1237 Fun4AllServer::topNode(const string &name)
1238 {
1239  map<string, PHCompositeNode *>::const_iterator iter;
1240  iter = topnodemap.find(name);
1241  if (iter != topnodemap.end())
1242  {
1243  return iter->second;
1244  }
1245  AddTopNode(name);
1246  iter = topnodemap.find(name);
1247  if (iter != topnodemap.end())
1248  {
1249  InitNodeTree(iter->second);
1250  return iter->second;
1251  }
1252  cout << PHWHERE << " Could not create new topNode " << name
1253  << " send email to off-l with the following printout: " << endl;
1254  for (iter = topnodemap.begin(); iter != topnodemap.end(); ++iter)
1255  {
1256  cout << iter->first << " is at " << hex << iter->second << endl;
1257  }
1258  exit(1);
1259 }
1260 
1261 int Fun4AllServer::AddTopNode(const string &name)
1262 {
1263  map<string, PHCompositeNode *>::const_iterator iter;
1264  iter = topnodemap.find(name);
1265  if (iter != topnodemap.end())
1266  {
1267  return -1;
1268  }
1269  PHCompositeNode *newNode = new PHCompositeNode(name.c_str());
1270  topnodemap[name] = newNode;
1271  return 0;
1272 }
1273 
1274 PHCompositeNode *Fun4AllServer::getNode(const char *name, const char *topnodename)
1275 {
1276  PHNodeIterator iter(topNode(topnodename));
1277  PHCompositeNode *thisNode = dynamic_cast<PHCompositeNode *>(iter.findFirst("PHCompositeNode", name));
1278  if (!thisNode)
1279  {
1280  thisNode = new PHCompositeNode(name);
1281  topNode(topnodename)->addNode(thisNode);
1282  }
1283  return thisNode;
1284 }
1285 
1287 {
1288  int iret = defaultSyncManager->registerInputManager(InManager);
1289  return iret;
1290 }
1291 
1294 {
1295  vector<Fun4AllSyncManager *>::const_iterator iter;
1296  for (iter = SyncManagers.begin(); iter != SyncManagers.end(); ++iter)
1297  {
1298  if ((*iter)->getInputManager(name))
1299  {
1300  return (*iter)->getInputManager(name);
1301  }
1302  }
1303  cout << "Could not locate input manager " << name << endl;
1304  return 0;
1305 }
1306 
1308 {
1309  return (defaultSyncManager->PrdfEvents());
1310 }
1311 
1313 {
1314  return (defaultSyncManager->TotalEvents());
1315 }
1316 
1317 //_________________________________________________________________
1318 int Fun4AllServer::run(const int nevnts, const bool require_nevents)
1319 {
1321  static bool run_number_forced = rc->FlagExist("RUNNUMBER");
1322  static int ifirst = 1;
1323  if (ifirst && run_number_forced)
1324  {
1325  runnumber = rc->get_IntFlag("RUNNUMBER");
1326  cout << "Fun4AllServer: Runnumber forced to " << runnumber << " by RUNNUMBER IntFlag" << endl;
1327  }
1328  int iret = 0;
1329  int icnt = 0;
1330  int icnt_good = 0;
1331  vector<Fun4AllSyncManager *>::const_iterator iter;
1332  while (!iret)
1333  {
1334  int resetnodetree = 0;
1335  for (iter = SyncManagers.begin(); iter != SyncManagers.end(); ++iter)
1336  {
1337  if (verbosity >= VERBOSITY_MORE)
1338  {
1339  cout << "executing run for input master " << (*iter)->Name() << endl;
1340  }
1341  int retval = (*iter)->run(1);
1342  // if a new input file is opened during syncing and it contains
1343  // different nodes
1344  // as the previous one, the info in the nodes which are only in
1345  // the previous file will be carried to another event. We also
1346  // do not know under which topNode the input managers put
1347  // their data. This is why
1348  // the whole node tree is resetted whenever one of the Sync Managers
1349  // requires it.
1350  if (retval == 1)
1351  {
1352  resetnodetree = 1;
1353  }
1354  else
1355  {
1356  iret += retval;
1357  }
1358  }
1359  if (resetnodetree)
1360  {
1361  // if the node tree needs resetting, we just push the current
1362  // event(s) (which are all properly synced at this point)
1363  // back into the input managers and just read again.
1364  ResetNodeTree();
1365  for (iter = SyncManagers.begin(); iter != SyncManagers.end(); ++iter)
1366  {
1367  (*iter)->PushBackInputMgrsEvents(1);
1368  }
1369  continue;
1370  }
1371  if (iret)
1372  {
1373  break;
1374  }
1375  int currentrun = 0;
1376  for (iter = SyncManagers.begin(); iter != SyncManagers.end(); ++iter)
1377  {
1378  int runno = (*iter)->CurrentRun();
1379  // cout << (*iter)->Name() << " run no: " << runno << endl;
1380  if (runno != 0)
1381  {
1382  if (currentrun == 0)
1383  {
1384  currentrun = runno;
1385  }
1386  else
1387  {
1388  if (currentrun != runno)
1389  {
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;
1393  for (syiter = SyncManagers.begin(); syiter != SyncManagers.end(); ++syiter)
1394  {
1395  cout << (*syiter)->Name() << " run number: " << (*syiter)->CurrentRun() << endl;
1396  }
1397  cout << "Exiting now" << endl;
1398  exit(1);
1399  }
1400  }
1401  }
1402  }
1403  if (ifirst)
1404  {
1405  if (currentrun != runnumber && !run_number_forced) // use real run if not forced
1406  {
1407  runnumber = currentrun;
1408  }
1409  setRun(runnumber);
1411  ifirst = 0;
1412  }
1413  else if (!run_number_forced)
1414  {
1415  if (currentrun != runnumber)
1416  {
1417  EndRun(runnumber);
1418  runnumber = currentrun;
1419  setRun(runnumber);
1421  }
1422  }
1423 
1424  if (verbosity >= VERBOSITY_SOME)
1425  {
1426  // print event cycle counter in log scale if VERBOSITY_SOME
1427 
1428  const double significand = icnt / pow(10, (int) (log10(icnt)));
1429 
1430  if ((fmod(significand, 1.0) == 0 && significand <= 10) or icnt == 0)
1431  {
1432  cout << "Fun4AllServer::run - process_event cycle "
1433  << icnt << "\t for run " << runnumber;
1434  if (require_nevents)
1435  cout << ", " << icnt_good << " good event so far";
1436  cout << endl;
1437  }
1438  }
1439 
1440  if (icnt == 0 and verbosity > VERBOSITY_QUIET)
1441  {
1442  // increase verbosity for the first event in verbose modes
1443  ++verbosity;
1444  }
1445 
1446  iret = process_event();
1447 
1448  if (icnt == 0 and verbosity > VERBOSITY_QUIET)
1449  {
1450  // increase verbosity for the first event in verbose modes
1451  --verbosity;
1452  }
1453 
1454  if (require_nevents)
1455  {
1456  if (std::find(RetCodes.begin(),
1457  RetCodes.end(),
1458  static_cast<int>(Fun4AllReturnCodes::ABORTEVENT)) == RetCodes.end())
1459  icnt_good++;
1460  if (iret || (nevnts > 0 && icnt_good >= nevnts))
1461  break;
1462  }
1463  else if (iret || (nevnts > 0 && ++icnt >= nevnts))
1464  {
1465  break;
1466  }
1467  }
1468  return iret;
1469 }
1470 
1471 //_________________________________________________________________
1472 int Fun4AllServer::skip(const int nevnts)
1473 {
1474  int iret = 0;
1475  vector<Fun4AllSyncManager *>::const_iterator iter;
1476  for (iter = SyncManagers.begin(); iter != SyncManagers.end(); ++iter)
1477  {
1478  iret += (*iter)->skip(nevnts);
1479  }
1480  return iret;
1481 }
1482 
1483 //_________________________________________________________________
1484 int Fun4AllServer::fileopen(const char *managername, const char *filename)
1485 {
1486  int iret = 0;
1487  vector<Fun4AllSyncManager *>::const_iterator iter;
1488  for (iter = SyncManagers.begin(); iter != SyncManagers.end(); ++iter)
1489  {
1490  iret += (*iter)->fileopen(managername, filename);
1491  }
1492  return iret;
1493 }
1494 
1495 int Fun4AllServer::BranchSelect(const char *managername, const char *branch, int iflag)
1496 {
1497  int iret = 0;
1498  vector<Fun4AllSyncManager *>::const_iterator iter;
1499  for (iter = SyncManagers.begin(); iter != SyncManagers.end(); ++iter)
1500  {
1501  iret += (*iter)->BranchSelect(managername, branch, iflag);
1502  }
1503  return iret;
1504 }
1505 
1506 int Fun4AllServer::BranchSelect(const char *branch, int iflag)
1507 {
1508  int iret = 0;
1509  vector<Fun4AllSyncManager *>::const_iterator iter;
1510  for (iter = SyncManagers.begin(); iter != SyncManagers.end(); ++iter)
1511  {
1512  iret += (*iter)->BranchSelect(branch, iflag);
1513  }
1514  return iret;
1515 }
1516 
1517 int Fun4AllServer::setBranches(const char *managername)
1518 {
1519  int iret = 0;
1520  vector<Fun4AllSyncManager *>::const_iterator iter;
1521  for (iter = SyncManagers.begin(); iter != SyncManagers.end(); ++iter)
1522  {
1523  iret += (*iter)->setBranches(managername);
1524  }
1525  return iret;
1526 }
1527 
1529 {
1530  int iret = 0;
1531  vector<Fun4AllSyncManager *>::const_iterator iter;
1532  for (iter = SyncManagers.begin(); iter != SyncManagers.end(); ++iter)
1533  {
1534  iret += (*iter)->setBranches();
1535  }
1536  return iret;
1537 }
1538 
1539 int Fun4AllServer::fileclose(const string &managername)
1540 {
1541  int iret = 0;
1542  vector<Fun4AllSyncManager *>::const_iterator iter;
1543  for (iter = SyncManagers.begin(); iter != SyncManagers.end(); ++iter)
1544  {
1545  iret += (*iter)->fileclose(managername);
1546  }
1547  return iret;
1548 }
1549 
1551 {
1552  int iret = defaultSyncManager->SegmentNumber();
1553  return iret;
1554 }
1555 
1556 void Fun4AllServer::GetInputFullFileList(vector<string> &fnames) const
1557 {
1559  return;
1560 }
1561 
1563 {
1564  return 0;
1565 }
1566 
1567 unsigned
1568 Fun4AllServer::GetTopNodes(std::vector<std::string> &names) const
1569 {
1570  map<string, PHCompositeNode *>::const_iterator iter;
1571  for (iter = topnodemap.begin(); iter != topnodemap.end(); ++iter)
1572  {
1573  names.push_back(iter->first);
1574  }
1575  return names.size();
1576 }
1577 
1578 void Fun4AllServer::GetOutputManagerList(std::vector<std::string> &names) const
1579 {
1580  names.clear();
1581  vector<Fun4AllOutputManager *>::const_iterator iter;
1582  for (iter = OutputManager.begin(); iter != OutputManager.end(); ++iter)
1583  {
1584  names.push_back((*iter)->Name());
1585  }
1586  return;
1587 }
1588 
1589 void Fun4AllServer::GetModuleList(std::vector<std::string> &names) const
1590 {
1591  names.clear();
1592  vector<pair<SubsysReco *, PHCompositeNode *> >::const_iterator iter;
1593  for (iter = Subsystems.begin(); iter != Subsystems.end(); ++iter)
1594  {
1595  names.push_back((*iter).first->Name());
1596  }
1597  return;
1598 }
1599 
1601 {
1602  BOOST_FOREACH (Fun4AllSyncManager *syncman, SyncManagers)
1603  {
1604  if (syncman->Name() == newmaster->Name())
1605  {
1606  cout << "Input Master " << newmaster->Name()
1607  << " already registered" << endl;
1608  return -1;
1609  }
1610  }
1611  if (verbosity >= VERBOSITY_SOME)
1612  {
1613  cout << "Registering Input Master " << newmaster->Name() << endl;
1614  }
1615  SyncManagers.push_back(newmaster);
1616  return 0;
1617 }
1618 
1621 {
1622  if (name == "DefaultSyncManager")
1623  {
1624  return defaultSyncManager;
1625  }
1626  vector<Fun4AllSyncManager *>::iterator iter;
1627 
1628  for (iter = SyncManagers.begin(); iter != SyncManagers.end(); ++iter)
1629  {
1630  if ((*iter)->Name() == name)
1631  {
1632  return *iter;
1633  }
1634  }
1635  cout << "Could not find Input Master " << name << endl;
1636  return 0;
1637 }
1638 
1642 int Fun4AllServer::setRun(const int runno)
1643 {
1644  runnumber = runno;
1646  rc->set_IntFlag("RUNNUMBER", runno);
1647  //PHTimeStamp *tstamp = nullptr;
1648  //if (!tstamp)
1649  //{
1650  // tstamp = new PHTimeStamp(0);
1651  // cout << "Fun4AllServer::setRun(): could not get timestamp for run " << runno
1652  // << ", using tics(0) timestamp: ";
1653  // tstamp->print();
1654  // cout << endl;
1655  //}
1656  //delete tstamp;
1657  FrameWorkVars->SetBinContent(RUNNUMBERBIN, (Stat_t) runno);
1658  return 0;
1659 }
1660 
1661 void Fun4AllServer::NodeIdentify(const std::string &name)
1662 {
1663  PHObject *obj = findNode::getClass<PHObject>(TopNode, name);
1664  if (obj)
1665  {
1666  obj->identify();
1667  }
1668  else
1669  {
1670  cout << "Could not locate node " << name
1671  << " or no PHObject Node" << endl;
1672  }
1673  return;
1674 }
1675 
1676 void Fun4AllServer::PrintTimer(const string &name)
1677 {
1678  map<const string, PHTimer2>::const_iterator iter;
1679  if (name.empty())
1680  {
1681  for (iter = timer_map.begin(); iter != timer_map.end(); ++iter)
1682  {
1683  iter->second.print_stat();
1684  }
1685  }
1686  else
1687  {
1688  iter = timer_map.find(name);
1689  if (iter != timer_map.end())
1690  {
1691  iter->second.print_stat();
1692  }
1693  else
1694  {
1695  cout << "No timer with name " << name << " found" << endl;
1696  cout << "Existing timers:" << endl;
1697  for (iter = timer_map.begin(); iter != timer_map.end(); ++iter)
1698  {
1699  cout << iter->first << endl;
1700  }
1701  }
1702  }
1703  return;
1704 }
1705 
1706 void Fun4AllServer::ReadSpillTimer(double& time_subsys, double& time_output)
1707 {
1708  time_subsys = timer_sp_subsys->get_accumulated_time();
1709  time_output = timer_sp_output->get_accumulated_time();
1710 }
1711 
1713 {
1716 }
@ RUNNUMBERBIN
static const int NFRAMEWORKBINS
int verbosity
The verbosity level. 0 means not verbose at all.
Definition: Fun4AllBase.h:75
virtual const std::string Name() const
Returns the name of this module.
Definition: Fun4AllBase.h:23
@ VERBOSITY_QUIET
Quiet mode. Only output critical messages. Intended for batch production mode.
Definition: Fun4AllBase.h:36
@ VERBOSITY_EVEN_MORE
Output even more messages.
Definition: Fun4AllBase.h:45
@ VERBOSITY_MORE
Output more messages.
Definition: Fun4AllBase.h:42
@ VERBOSITY_SOME
Output some useful messages during manual command line running.
Definition: Fun4AllBase.h:39
std::string ThisName
Definition: Fun4AllBase.h:72
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 ResetSpillTimer()
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
Definition: Fun4AllServer.h:59
int CountOutNodes(PHCompositeNode *startNode)
PHTimer2 * timer_sp_output
Measure the time used by OutputManager in process_event().
int DstEvents() const
int AddTopNode(const std::string &name)
int BranchSelect(const char *managername, const char *branch, int iflag)
int PrdfEvents() const
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
virtual int End()
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
virtual ~Fun4AllServer()
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
Definition: PHFlag.cc:255
virtual void set_IntFlag(const std::string &name, const int flag)
Definition: PHFlag.cc:145
virtual int get_IntFlag(const std::string &name) const
Definition: PHFlag.cc:117
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)
Definition: PHNode.h:15
const std::string getType() const
Definition: PHNode.h:31
void makeTransient()
Definition: PHNode.h:45
const std::string getName() const
Definition: PHNode.h:32
void makePersistent()
Definition: PHNode.h:28
virtual void identify(std::ostream &os=std::cout) const
Definition: PHObject.cc:21
void print()
Definition: PHTimeStamp.cc:127
Class to measure the time spent by a code block.
Definition: PHTimer2.h:17
double get_accumulated_time() const
Definition: PHTimer2.h:34
void reset()
Definition: PHTimer2.cc:26
void restart()
Definition: PHTimer2.cc:42
void stop()
Definition: PHTimer2.cc:33
virtual int Init(PHCompositeNode *)
Definition: SubsysReco.h:41
static recoConsts * instance()
Definition: recoConsts.cc:7
#define PHWHERE
Definition: phool.h:23