Class Reference for E1039 Core & Analysis Software
Fun4AllSyncManager.cc
Go to the documentation of this file.
1 #include "Fun4AllSyncManager.h"
2 #include "Fun4AllInputManager.h"
3 #include "Fun4AllHistoBinDefs.h"
4 #include "Fun4AllServer.h"
5 #include <phool/recoConsts.h>
6 
7 #include <ffaobjects/RunHeader.h>
9 
10 #include <phool/PHIODataNode.h>
12 
13 #include <boost/foreach.hpp>
14 
15 #include <cstdlib>
16 #include <memory>
17 #include <string>
18 #include <vector>
19 
20 using namespace std;
21 
23  Fun4AllBase(name),
24  prdf_segment(0),
25  prdf_events(0),
26  events_total(0),
27  currentrun(0),
28  currentevent(0),
29  repeat(0),
30  MasterSync(NULL)
31 {
32  return;
33 }
34 
36 {
37  delete MasterSync;
38  while (InManager.begin() != InManager.end())
39  {
40  if (verbosity)
41  {
42  InManager.back()->Verbosity(verbosity);
43  }
44  delete InManager.back();
45  InManager.pop_back();
46  }
47  return ;
48 }
49 
50 int
52 {
53  BOOST_FOREACH(Fun4AllInputManager * inman, InManager)
54  {
55  if ( inman->Name() == InputManager->Name() )
56  {
57  cout << "InputManager " << InputManager->Name() << " allready in list" << endl;
58  return -1;
59  }
60  }
61 
62  if (verbosity > 0)
63  {
64  cout << "Registering InputManager " << InputManager->Name() << endl;
65  }
66  InManager.push_back(InputManager);
67  iretInManager.push_back(0);
68  InputManager->setSyncManager(this);
69  return 0;
70 }
71 
74 {
75  BOOST_FOREACH(Fun4AllInputManager * inman, InManager)
76  {
77  if (name == inman->Name())
78  {
79  return inman;
80  }
81  }
82  cout << Name() << ": Could not find InputManager" << name << endl;
83  return NULL;
84 }
85 
86 //_________________________________________________________________
87 int
88 Fun4AllSyncManager::run(const int nevnts)
89 {
90  vector<Fun4AllInputManager *>::iterator iter;
91  int iret = 0;
92  int icnt = 0;
93  int iretsync = 0;
94  int resetnodetree = 0;
95  while (! iret)
96  {
97  unsigned iman = 0;
98  int ifirst = 0;
99  for (iter = InManager.begin(); iter != InManager.end(); ++iter)
100  {
101  iretInManager[iman] = (*iter)->run(1);
102  iret += iretInManager[iman];
103  if (!ifirst)
104  {
105  if (!iretInManager[iman])
106  {
107  if (!((*iter)->GetSyncObject(&MasterSync))) // NoSync managers return non zero
108  {
109  ifirst = 1;
110  }
111  }
112  }
113  else
114  {
115  iretsync = CheckSync(iman);
116  if (iretsync)
117  {
118  break;
119  }
120  }
121  iman++;
122  }
123 
124 
125  // check event reading, syncronisation
126  if (iret || iretsync)
127  {
128  // tell the server to reset the node tree
129  resetnodetree = 1;
130 
131  // if there was an io error (file exhausted) we nee to push back
132  // the events from files which are not exhausted yet into the root files
133  // here we check the return codes for each input manager and if the
134  // read was successful (iret = 0) we push the event back
135  if (iret)
136  {
137  vector<Fun4AllInputManager *>::const_iterator InIter;
138  if (repeat)
139  {
140  for (InIter = InManager.begin(); InIter != InManager.end(); ++InIter)
141  {
142  if ((*InIter)->isOpen())
143  {
144  (*InIter)->fileclose();
145  }
146  int ireset = (*InIter)->ResetFileList();
147  if (ireset)
148  {
149 
150  cout << "Resetting input manager " << (*InIter)->Name() << " failed during Repeat" << endl;
151  exit(1);
152  }
153  }
154  if (repeat > 0)
155  {
156  repeat--;
157  }
158  iret = 0;
159  continue;
160  }
161  vector<int>::const_iterator iter;
162  // push back events where the Imanager did not report an error
163  InIter = InManager.begin();
164  for (iter = iretInManager.begin(); iter != iretInManager.end(); ++iter)
165  {
166  if (verbosity > 0)
167  {
168  cout << (*InIter)->Name() << ": return code: " << *iter << endl;
169  }
170  if (!(*iter))
171  {
172  (*InIter)->PushBackEvents(1);
173  if (verbosity > 0)
174  {
175  cout << (*InIter)->Name() << ": push evts: " << *iter << endl;
176  }
177  }
178  ++InIter;
179  }
180  goto readerror;
181  }
182  else
183  {
184  // just read the next event and hope it syncs
185  // this won't update the event counter
186  for (unsigned nman = 0; nman < iman; nman++)
187  {
188  InManager[nman]->NoSyncPushBackEvents(1);
189  }
190  continue;
191  }
192  }
193 
194  events_total++;
195  if (nevnts > 0 && ++icnt >= nevnts)
196  {
197  break;
198  }
199  }
200 
201  readerror:
202  if (!iret)
203  {
204  if (!resetnodetree) // all syncing is done and no read errors --> we have a good event in memory
205  {
206  currentrun = 0; // reset current run to 0
207  for (iter = InManager.begin(); iter != InManager.end(); ++iter)
208  {
209  int runno = (*iter)->RunNumber();
210  if (verbosity > 2)
211  {
212  cout << ThisName << " input mgr " << (*iter)->Name() << " run: " << runno << endl;
213  }
214  if (runno != 0)
215  {
216  if (currentrun == 0)
217  {
218  currentrun = runno;
219  continue;
220 
221  }
222  else
223  {
224  if (currentrun != runno)
225  {
226  cout << "Mixing run numbers (except runnumber=0 which means no valid runnumber) is not supported" << endl;
227  cout << "Here are the list of input managers and runnumbers:" << endl;
228  BOOST_FOREACH(Fun4AllInputManager * inman, InManager)
229  {
230  cout << inman->Name() << " runno: " << inman->RunNumber() << endl;
231  }
232  cout << "Exiting now" << endl;
233  exit(1);
234  }
235  }
236  }
237  }
238  }
239  return resetnodetree;
240  }
241  return iret;
242 }
243 
244 //_________________________________________________________________
245 int
246 Fun4AllSyncManager::skip(const int nevnts)
247 {
248  if (!InManager.empty())
249  {
250  int Npushback = -nevnts;
251  // the PushBackEvents(const int nevents) "pushes back" events events into the root file
252  // (technically it just decrements the local counter in the PHNodeIOManager)
253  // giving it a negative argument will skip events
254  // this is much faster than actually reading the events in
255  int iret = InManager[0]->PushBackEvents(Npushback);
256  if (!iret)
257  {
258  return 0;
259  }
260  else
261  {
262  cout << PHWHERE << " Error during skipping events" << endl;
263  return iret;
264  }
265  }
266  cout << PHWHERE << " Cannot skip events: No Input Managers registered?" << endl;
267  Print("INPUTMANAGER");
268  cout << "If there are Input Managers in this list, send mail with this" << endl;
269  cout << "error message to off-l" << endl;
270  cout << "and include the macro you used" << endl;
271  return -1;
272 }
273 
274 //_________________________________________________________________
275 int
276 Fun4AllSyncManager::fileopen(const string &managername, const string &filename)
277 {
278  BOOST_FOREACH(Fun4AllInputManager * inman, InManager)
279  {
280  if (managername == inman->Name())
281  {
282  int iret = inman->fileopen(filename);
283  return iret;
284  }
285  }
286  cout << "No Input Manager " << managername << " registered" << endl;
287  return -1;
288 }
289 
290 int
291 Fun4AllSyncManager::BranchSelect(const string &managername, const string &branch, const int iflag)
292 {
293  BOOST_FOREACH(Fun4AllInputManager * inman, InManager)
294  {
295  if (managername == inman->Name())
296  {
297  int iret = inman->BranchSelect(branch, iflag);
298  return iret;
299  }
300  }
301  cout << "No Input Manager " << managername << " registered" << endl;
302  return -1;
303 }
304 
305 int
306 Fun4AllSyncManager::BranchSelect(const string &branch, const int iflag)
307 {
308  int iret = 0;
309  BOOST_FOREACH(Fun4AllInputManager * inman, InManager)
310  {
311  iret += inman->BranchSelect(branch, iflag);
312  }
313  return iret;
314 }
315 
316 int
317 Fun4AllSyncManager::setBranches(const string &managername)
318 {
319  BOOST_FOREACH(Fun4AllInputManager * inman, InManager)
320  {
321  if (managername == inman->Name())
322  {
323  int iret = inman->setBranches();
324  return iret;
325  }
326  }
327  cout << "No Input Manager " << managername << " registered" << endl;
328  return -1;
329 }
330 
331 int
333 {
334  int iret = 0;
335  BOOST_FOREACH(Fun4AllInputManager * inman, InManager)
336  {
337  iret += inman->setBranches();
338  }
339  return iret;
340 }
341 
342 int Fun4AllSyncManager::fileclose(const string &managername)
343 {
344  int foundIt = 0;
345  BOOST_FOREACH(Fun4AllInputManager * inman, InManager)
346  {
347  if (managername == inman->Name() || managername.empty())
348  {
349  inman->fileclose();
350  foundIt = 1;
351  }
352  }
353  if (foundIt)
354  {
355  return 0;
356  }
357  cout << "No Input Manager " << managername << " registered" << endl;
358  return -1;
359 }
360 
361 void Fun4AllSyncManager::Print(const string &what) const
362 {
363  if (what == "ALL" || what == "INPUTMANAGER")
364  {
365  // loop over the map and print out the content (name and location in memory)
366  cout << "--------------------------------------" << endl << endl;
367  cout << "List of InputManagers in Fun4AllSyncManager "
368  << Name() << ":" << endl;
369 
370  BOOST_FOREACH(Fun4AllInputManager * inman, InManager)
371  {
372  cout << inman->Name() << endl;
373  }
374  cout << endl;
375  }
376  return;
377 }
378 
379 int Fun4AllSyncManager::CheckSync(const unsigned i)
380 {
381  int iret;
382  iret = InManager[i]->SyncIt(MasterSync);
383  return iret;
384 }
385 
386 void
387 Fun4AllSyncManager::GetInputFullFileList(std::vector<std::string> &fnames) const
388 {
389  list<string>::const_iterator listiter;
390  vector<Fun4AllInputManager *>::const_iterator iter;
391  for (iter = InManager.begin(); iter != InManager.end(); ++iter)
392  {
393  list<string> fl = (*iter)->GetFileOpenedList();
394  for (listiter = fl.begin(); listiter != fl.end(); ++listiter)
395  {
396  fnames.push_back(*listiter);
397  }
398  }
399  return;
400 }
401 
402 void
404 {
405  BOOST_FOREACH(Fun4AllInputManager * inman, InManager)
406  {
407  inman->PushBackEvents(i);
408  }
409  return;
410 }
411 
412 int
414 {
415  int iret = 0;
416  BOOST_FOREACH(Fun4AllInputManager * inman, InManager)
417  {
418  if (verbosity > 0)
419  {
420  cout << "Resetting Event for Input Manager " << inman->Name() << endl;
421  }
422  iret += inman->ResetEvent();
423  }
424  return iret;
425 }
426 
427 void
429 {
430  currentevent = evt;
432  se->EventNumber(evt);
433  return;
434 }
#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
virtual void setSyncManager(Fun4AllSyncManager *master)
virtual int BranchSelect(const std::string &, const int)
virtual int RunNumber() const
virtual int fileopen(const std::string &)
virtual int PushBackEvents(const int)
static Fun4AllServer * instance()
void EventNumber(const int evtno)
int registerInputManager(Fun4AllInputManager *InManager)
Fun4AllSyncManager(const std::string &name="SYNCMANAGERNONAME")
void CurrentEvent(const int evt)
int skip(const int nevnts=0)
skip n events (0 means up to the end of file). Skip means read, don't process.
Fun4AllInputManager * getInputManager(const std::string &name)
void Print(const std::string &what="ALL") const
void PushBackInputMgrsEvents(const int i)
int run(const int nevnts=0)
run n events (0 means up to end of file
void GetInputFullFileList(std::vector< std::string > &fnames) const
int fileopen(const std::string &managername="NONE", const std::string &filename="NONE")
int fileclose(const std::string &managername="NONE")
int BranchSelect(const std::string &managername, const std::string &branch, int iflag)
#define PHWHERE
Definition: phool.h:23