Class Reference for E1039 Core & Analysis Software
Fun4AllDstInputManager.cc
Go to the documentation of this file.
1 #include "Fun4AllServer.h"
3 #include "Fun4AllHistoBinDefs.h"
4 #include "Fun4AllSyncManager.h"
5 #include "Fun4AllReturnCodes.h"
6 
7 #include <ffaobjects/RunHeader.h>
9 #include <ffaobjects/SyncDefs.h>
10 
11 //#include <frog/FROG.h>
12 
13 #include <phool/getClass.h>
14 #include <phool/PHCompositeNode.h>
15 #include <phool/PHIODataNode.h>
16 #include <phool/PHNodeIOManager.h>
17 #include <phool/recoConsts.h>
18 
19 #include <TH1.h>
20 
21 #include <cstdlib>
22 #include <memory>
23 
24 using namespace std;
25 
26 Fun4AllDstInputManager::Fun4AllDstInputManager(const string &name, const string &nodename, const string &topnodename) :
27  Fun4AllInputManager(name, nodename, topnodename),
28  readrunttree(1),
29  isopen(0),
30  events_total(0),
31  events_thisfile(0),
32  events_skipped_during_sync(0),
33  fname(NULL),
34  RunNode("RUN"),
35  dstNode(NULL),
36  runNode(NULL),
37  IManager(NULL),
38  syncobject(NULL)
39 {
40  return ;
41 }
42 
44 {
45  delete IManager;
46  return;
47 }
48 
49 int
50 Fun4AllDstInputManager::fileopen(const string &filenam)
51 {
53  if (isopen)
54  {
55  cout << "Closing currently open file "
56  << filename
57  << " and opening " << filenam << endl;
58  fileclose();
59  }
60  filename = filenam;
61 // FROG frog;
62 // fname = frog.location(filename.c_str());
63  fname = filename.c_str();
64  if (verbosity > 0)
65  {
66  cout << ThisName << ": opening file " << filename.c_str() << endl;
67  }
68  // sanity check - the IManager must be NULL when this method is executed
69  // if not something is very very wrong and we must not continue
70  if (IManager)
71  {
72  cout << PHWHERE << " IManager pointer is not NULL but " << IManager
73  << endl;
74  cout << "Send mail to off-l with this printout and the macro you used"
75  << endl;
76  cout << "Trying to execute IManager->print() to display more info"
77  << endl;
78  cout << "Code will probably segfault now" << endl;
79  IManager->print();
80  cout << "Have someone look into this problem - Exiting now" << endl;
81  exit(1);
82  }
83  // first read the runnode if not disabled
84  if (readrunttree)
85  {
86  //IManager = new PHNodeIOManager(frog.location(filename.c_str()), PHReadOnly, PHRunTree);
87  IManager = new PHNodeIOManager(filenam.c_str(), PHReadOnly, PHRunTree);
88  if (IManager->isFunctional())
89  {
90  runNode = se->getNode(RunNode.c_str(), topNodeName.c_str());
92  // get the current run number
93  RunHeader *runheader = findNode::getClass<RunHeader>(runNode, "RunHeader");
94  if (runheader)
95  {
96  SetRunNumber(runheader->get_RunNumber());
97  }
98  }
99  // DLW: move the delete outside the if block to cover the case where isFunctional() fails
100  delete IManager;
101  }
102  // now open the dst node
103  dstNode = se->getNode(InputNode.c_str(), topNodeName.c_str());
104  //IManager = new PHNodeIOManager(frog.location(filename.c_str()), PHReadOnly);
105  IManager = new PHNodeIOManager(filenam.c_str(), PHReadOnly);
106  if (IManager->isFunctional())
107  {
108  isopen = 1;
109  events_thisfile = 0;
110  setBranches(); // set branch selections
111  AddToFileOpened(filename); // add file to the list of files which were opened
112  return 0;
113  }
114  else
115  {
116  cout << PHWHERE << ": " << ThisName << " Could not open file "
117  << filename << endl;
118  delete IManager;
119  IManager = 0;
120  return -1;
121  }
122 }
123 
125 {
126  if (!isopen)
127  {
128  if (filelist.empty())
129 
130  {
131  if (verbosity > 0)
132  {
133  cout << Name() << ": No Input file open" << endl;
134  }
135  return -1;
136  }
137  else
138  {
139  if (OpenNextFile())
140  {
141  cout << Name() << ": No Input file from filelist opened" << endl;
142  return -1;
143  }
144  }
145  }
146  if (verbosity > 3)
147  {
148  cout << "Getting Event from " << Name() << endl;
149  }
150  readagain:
151  PHCompositeNode *dummy;
152  int ncount = 0;
153  dummy = IManager->read(dstNode);
154  while (dummy)
155  {
156  ncount ++;
157  if (nevents > 0 && ncount >= nevents)
158  {
159  break;
160  }
161  dummy = IManager->read(dstNode);
162  }
163  if (!dummy)
164  {
165  fileclose();
166  if (!OpenNextFile())
167  {
168  goto readagain;
169  }
170  return -1;
171  }
172  events_total += ncount;
173  events_thisfile += ncount;
174  // check if the local SubsysReco discards this event
176  {
177  goto readagain;
178  }
179  syncobject = findNode::getClass<SyncObject>(dstNode,"Sync");
180  return 0;
181 }
182 
184 {
185  if (!isopen)
186  {
187  cout << Name() << ": fileclose: No Input file open" << endl;
188  return -1;
189  }
190  delete IManager;
191  IManager = 0;
192  isopen = 0;
193  if (!filelist.empty())
194  {
195  if (repeat)
196  {
197  filelist.push_back(*(filelist.begin()));
198  if (repeat > 0)
199  {
200  repeat--;
201  }
202  }
203  filelist.pop_front();
204  }
205 
206  return 0;
207 }
208 
209 int
211 {
212  // here we copy the sync object from the current file to the
213  // location pointed to by mastersync. If mastersync is a 0 pointer
214  // the syncobject is cloned. If mastersync allready exists the content
215  // of syncobject is copied
216  if (!(*mastersync))
217  {
218  if (syncobject) *mastersync = syncobject->clone();
219  }
220  else
221  {
222  *(*mastersync) = *syncobject; // copy syncobject content
223  }
225 }
226 
227 int
229 {
230  if (!mastersync)
231  {
232  cout << PHWHERE << Name() << " No MasterSync object, cannot perform synchronization" << endl;
233  cout << "Most likely your first file does not contain a SyncObject and the file" << endl;
234  cout << "opened by the Fun4AllDstInputManager with Name " << Name() << " has one" << endl;
235  cout << "Change your macro and use the file opened by this input manager as first input" << endl;
236  cout << "and you will be okay. Fun4All will not process the current configuration" << endl << endl;
238  }
239  int iret = syncobject->Different(mastersync);
240  if (iret) // what to do if files are not in sync
241  {
242  if (mastersync->EventNumber() == -999999) // first file does not contain sync object
243  {
244  cout << PHWHERE << " Mastersync not filled, your first file does not contain a SyncObject" << endl;
245  cout << "This Event will not be processed further" << endl;
246  }
247  else // okay try to resync here
248  {
249  if (verbosity > 3)
250  {
251  cout << "Need to Resync, mastersync evt no: " << mastersync->EventNumber()
252  << ", this Event no: " << syncobject->EventNumber() << endl;
253  cout << "mastersync evt counter: " << mastersync->EventCounter()
254  << ", this Event counter: " << syncobject->EventCounter() << endl;
255  cout << "mastersync run number: " << mastersync->RunNumber()
256  << ", this run number: " << syncobject->RunNumber() << endl;
257  }
258  while (syncobject->RunNumber() < mastersync->RunNumber())
259 
260  {
262  if (verbosity > 2)
263  {
264  cout << ThisName << " Run Number: " << syncobject->RunNumber()
265  << ", master: " << mastersync->RunNumber()
266  << endl;
267  }
268  int iret = ReadNextEventSyncObject();
269  if (iret)
270  {
271  return iret;
272  }
273  }
274  int igood = 0;
275  if (syncobject->RunNumber() == mastersync->RunNumber())
276  {
277  igood = 1;
278  }
279  // only run up the Segment Number if run numbers are identical
280  while (syncobject->SegmentNumber() < mastersync->SegmentNumber() && igood)
281  {
283  if (verbosity > 2)
284  {
285  cout << ThisName << " Segment Number: " << syncobject->SegmentNumber()
286  << ", master: " << mastersync->SegmentNumber()
287  << endl;
288  }
289  int iret = ReadNextEventSyncObject();
290  if (iret)
291  {
292  return iret;
293  }
294  }
295  // only run up the Event Counter if run number and segment number are identical
296  if ( syncobject->SegmentNumber() == mastersync->SegmentNumber() && syncobject->RunNumber() == mastersync->RunNumber())
297  {
298  igood = 1;
299  }
300  else
301  {
302  igood = 0;
303  }
304  while (syncobject->EventCounter() < mastersync->EventCounter() && igood)
305  {
307  if (verbosity > 2)
308  {
309  cout << ThisName
310  << ", EventCounter: " << syncobject->EventCounter()
311  << ", master: " << mastersync->EventCounter()
312  << endl;
313  }
314  int iret = ReadNextEventSyncObject();
315  if (iret)
316  {
317  return iret;
318  }
319  }
320  // Since up to here we only read the sync object we need to push
321  // the current event back inot the root file (subtract one from the
322  // local root file event counter) so we can read the full event
323  // if it syncs, if it does not sync we also read one event too many
324  // (otherwise we cannot determine that we are "too far")
325  // and also have to push this one back
326  PushBackEvents(1);
327  if (syncobject->RunNumber() > mastersync->RunNumber() || // check if run number too large
328  syncobject->EventCounter() > mastersync->EventCounter() || // check if event counter too large
329  syncobject->SegmentNumber() > mastersync->SegmentNumber()) // check segment number too large
330  {
331  // the event from first file which determines the mastersync
332  // and which we are trying to find on this file does not exist on this file
333  // so: return failure. This will cause the input managers to read
334  // the next event from the input files file
336  }
337  // Here the event counter and segment number and run number do agree - we found the right match
338  // now read the full event (previously we only read the sync object)
339  PHCompositeNode *dummy;
340  dummy = IManager->read(dstNode);
341  if (!dummy)
342  {
343  cout << PHWHERE << " " << Name() << " Could not read full Event" << endl;
344  cout << "PLEASE NOTIFY PHENIX-OFF-L and post the macro you used" << endl;
345  fileclose();
347  }
348  int iret = syncobject->Different(mastersync); // final check if they really agree
349  if (iret) // if not things are severely wrong
350  {
351  cout << PHWHERE << " MasterSync and SyncObject of " << Name() << " are different" << endl;
352  cout << "This Event will not be processed further, here is some debugging info:" << endl;
353  cout << "PLEASE NOTIFY PHENIX-OFF-L and post the macro you used" << endl;
354  cout << "MasterSync->identify:" << endl;
355  mastersync->identify();
356  cout << Name() << ": SyncObject->identify:" << endl;
357  syncobject->identify();
359  }
360  else if (verbosity > 3)
361  {
362  cout << PHWHERE << " Resynchronization successfull for " << Name() << endl;
363  cout << "MasterSync->identify:" << endl;
364  mastersync->identify();
365  cout << Name() << ": SyncObject->identify:" << endl;
366  syncobject->identify();
367  }
368  }
369  }
370  // else
371  // {
372  // cout << "No Need to Resync" << endl;
373  // }
375 }
376 
377 int
379 {
380  readnextsync:
381  static int readfull = 0;
382  if (!IManager) // in case the old file was exhausted and there is no new file opened
383  {
385  }
386  if (syncbranchname.empty())
387  {
388  readfull = 1; // we need to read a full events to set the root branches to phool nodes right for a new file
389  map<string, TBranch*>::const_iterator bIter;
390  for (bIter = IManager->GetBranchMap()->begin(); bIter != IManager->GetBranchMap()->end(); ++bIter)
391  {
392  if (verbosity > 2)
393  {
394  cout << ThisName << ": branch: " << bIter->first << endl;
395  }
396  string::size_type pos = bIter->first.find("/Sync");
397  if (pos != string::npos) // found it
398  {
399  syncbranchname = bIter->first;
400  break;
401  }
402  }
403  if (syncbranchname.empty())
404  {
405  cout << PHWHERE << "Could not locate Sync Branch" << endl;
406  cout << "Please check for it in the following list of branch names and" << endl;
407  cout << "PLEASE NOTIFY PHENIX-OFF-L and post the macro you used" << endl;
408  for (bIter = IManager->GetBranchMap()->begin(); bIter != IManager->GetBranchMap()->end(); ++bIter)
409  {
410  cout << bIter->first << endl;
411  }
413  }
414  }
415  size_t EventOnDst = 0;
416  int itest = 0;
417  if (!readfull)
418  {
419  // if all files are exhausted, the IManager is deleted and set to NULL
420  // so check if IManager is valid before getting a new event
421  if (IManager)
422  {
423  EventOnDst = IManager->getEventNumber(); // this returns the next number of the event
424  itest = IManager->readSpecific(EventOnDst, syncbranchname.c_str());
425  }
426  else
427  {
428  if (verbosity > 2)
429  {
430  cout << ThisName << ": File exhausted while resyncing" << endl;
431  }
433  }
434  }
435  else
436  {
437  if (IManager->read(dstNode))
438  {
439  itest = 1;
440  }
441  else
442  {
443  itest = 0;
444  }
445  }
446  if (!itest)
447  {
448  if (verbosity > 2)
449  {
450  cout << ThisName << ": File exhausted while resyncing" << endl;
451  }
452  fileclose();
453  if (OpenNextFile())
454  {
455 
457  }
458  syncbranchname.clear(); // clear the sync branch name, who knows - it might be different on new file
459  goto readnextsync;
460  }
461  if (!readfull)
462  {
463  EventOnDst++;
464  IManager->setEventNumber(EventOnDst); // update event number in phool io manager
465  }
466  else
467  {
468  readfull = 0;
469  }
470  return 0;
471 }
472 
473 int
474 Fun4AllDstInputManager::BranchSelect(const string &branch, const int iflag)
475 {
476  int myflag = iflag;
477  // if iflag > 0 the branch is set to read
478  // if iflag = 0, the branch is set to NOT read
479  // if iflag < 0 the branchname is erased from our internal branch read map
480  // this does not have any effect on phool yet
481  if (myflag < 0)
482  {
483  map<const string, int>::iterator branchiter;
484  branchiter = branchread.find(branch);
485  if (branchiter != branchread.end())
486  {
487  branchread.erase(branchiter);
488  }
489  return 0;
490  }
491 
492  if (myflag > 0)
493  {
494  if (verbosity > 1)
495  {
496  cout << "Setting Root Tree Branch: " << branch << " to read" << endl;
497  }
498  myflag = 1;
499  }
500  else
501  {
502  if (verbosity > 1)
503  {
504  cout << "Setting Root Tree Branch: " << branch << " to NOT read" << endl;
505  }
506  }
507  branchread[branch] = myflag;
508  return 0;
509 }
510 
511 int
513 {
514  if (IManager)
515  {
516  if (!branchread.empty())
517  {
518  map<const string, int>::const_iterator branchiter;
519  for (branchiter = branchread.begin(); branchiter != branchread.end(); ++branchiter)
520  {
521  IManager->selectObjectToRead(branchiter->first.c_str(), branchiter->second);
522  if (verbosity > 0)
523  {
524  cout << branchiter->first << " set to " << branchiter->second << endl;
525  }
526  }
527  // protection against switching off the sync variables
528  // only implemented in the Sync Manager
530  }
531  }
532  else
533  {
534  cout << PHWHERE << " " << Name() << ": You can only call this function after a file has been opened" << endl;
535  cout << "Do not worry, the branches will be set as soon as you open a file" << endl;
536  return -1;
537  }
538  return 0;
539 }
540 
541 int
543 {
544  // protection against switching off the sync variables
545  for (int i = 0; i < syncdefs::NUM_SYNC_VARS; i++)
546  {
548  }
549  return 0;
550 }
551 
552 void
553 Fun4AllDstInputManager::Print(const string &what) const
554 {
555  if (what == "ALL" || what == "BRANCH")
556  {
557  // loop over the map and print out the content (name and location in memory)
558  cout << "--------------------------------------" << endl << endl;
559  cout << "List of selected branches in Fun4AllDstInputManager " << Name() << ":" << endl;
560 
561  map<const string, int>::const_iterator iter;
562  for (iter = branchread.begin(); iter != branchread.end(); ++iter)
563  {
564  cout << iter->first << " is switched ";
565  if (iter->second)
566  {
567  cout << "ON";
568  }
569  else
570  {
571  cout << "OFF";
572  }
573  cout << endl;
574  }
575  }
576  if ( (what == "ALL" || what == "PHOOL") && IManager)
577  {
578  // loop over the map and print out the content (name and location in memory)
579  cout << "--------------------------------------" << endl << endl;
580  cout << "PHNodeIOManager print in Fun4AllDstInputManager " << Name() << ":" << endl;
581  IManager->print();
582  }
584  return ;
585 }
586 
587 int
589 {
590  while (!filelist.empty())
591  {
592  list<string>::const_iterator iter = filelist.begin();
593  if (verbosity)
594  {
595  cout << PHWHERE << " opening next file: " << *iter << endl;
596  }
597  if (fileopen(*iter))
598  {
599  cout << PHWHERE << " could not open file: " << *iter << endl;
600  filelist.pop_front();
601  }
602  else
603  {
604  return 0;
605  }
606 
607  }
608  return -1;
609 }
610 
611 int
613 {
614  if (IManager)
615  {
616  unsigned EventOnDst = IManager->getEventNumber();
617  EventOnDst -= static_cast<unsigned>(i);
618  IManager->setEventNumber(EventOnDst);
619  return 0;
620  }
621  cout << PHWHERE << ThisName << ": could not push back events, Imanager is NULL"
622  << " probably the dst is not open yet (you need to call fileopen or run 1 event for lists)" << endl;
623  return -1;
624 }
#define NULL
Definition: Pdb.h:9
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
std::string ThisName
Definition: Fun4AllBase.h:72
int SyncIt(const SyncObject *mastersync)
virtual int setSyncBranches(PHNodeIOManager *IManager)
int BranchSelect(const std::string &branch, const int iflag)
int fileopen(const std::string &filenam)
std::map< const std::string, int > branchread
void Print(const std::string &what="ALL") const
Fun4AllDstInputManager(const std::string &name="DUMMY", const std::string &nodename="DST", const std::string &topnodename="TOP")
int GetSyncObject(SyncObject **mastersync)
int run(const int nevents=0)
virtual void Print(const std::string &what="ALL") const
std::list< std::string > filelist
void AddToFileOpened(const std::string &filename)
virtual void SetRunNumber(const int runno)
static Fun4AllServer * instance()
PHCompositeNode * getNode(const char *name, const char *topnodename="TOP")
void setEventNumber(const size_t evno)
Definition: PHIOManager.h:21
size_t getEventNumber() const
Definition: PHIOManager.h:20
virtual void print() const
int readSpecific(size_t requestedEvent, const char *objectName)
void selectObjectToRead(const char *objectName, PHBoolean readit)
int isFunctional() const
PHCompositeNode * read(PHCompositeNode *=0, size_t=0)
std::map< std::string, TBranch * > * GetBranchMap()
virtual int get_RunNumber() const
get Run Number
Definition: RunHeader.cc:38
virtual int Different(const SyncObject *other) const
Definition: SyncObject.cc:47
virtual void identify(std::ostream &os=std::cout) const
Definition: SyncObject.cc:15
virtual void SegmentNumber(const int)
set Segment Number
Definition: SyncObject.h:40
virtual void EventNumber(const int)
set Event Number
Definition: SyncObject.h:36
virtual SyncObject * clone() const
Virtual copy constructor.
Definition: SyncObject.cc:28
virtual void EventCounter(const int)
set Event Counter
Definition: SyncObject.h:33
virtual void RunNumber(const int)
set Run Number
Definition: SyncObject.h:43
static const char * SYNCVARS[]
Definition: SyncDefs.h:7
static const int NUM_SYNC_VARS
Definition: SyncDefs.h:6
@ PHRunTree
Definition: phool.h:16
@ PHReadOnly
Definition: phool.h:15
#define PHWHERE
Definition: phool.h:23