Class Reference for E1039 Core & Analysis Software
Fun4AllPrdfInputManager.cc
Go to the documentation of this file.
2 #include "Fun4AllServer.h"
3 #include "Fun4AllSyncManager.h"
4 #include "Fun4AllReturnCodes.h"
5 #include "Fun4AllUtils.h"
6 
7 #include <ffaobjects/RunHeader.h>
9 //#include <frog/FROG.h>
10 
11 #include <phool/getClass.h>
12 #include <phool/PHCompositeNode.h>
13 #include <phool/PHDataNode.h>
14 #include <phool/recoConsts.h>
15 
16 #include <Event/Event.h>
17 #include <Event/fileEventiterator.h>
18 
19 #include <cstdlib>
20 #include <memory>
21 
22 #include <boost/tokenizer.hpp>
23 #include <boost/foreach.hpp>
24 #include <boost/lexical_cast.hpp>
25 
26 using namespace std;
27 
28 Fun4AllPrdfInputManager::Fun4AllPrdfInputManager(const string &name, const string &topnodename) :
29  Fun4AllInputManager(name, ""),
30  segment(-999),
31  isopen(0),
32  events_total(0),
33  events_thisfile(0),
34  topNodeName(topnodename),
35  evt(NULL),
36  save_evt(NULL),
37  eventiterator(NULL)
38 {
40  topNode = se->topNode(topNodeName.c_str());
41  PHNodeIterator iter(topNode);
42  PHDataNode<Event> *PrdfNode = dynamic_cast<PHDataNode<Event> *>(iter.findFirst("PHDataNode","PRDF"));
43  if (!PrdfNode)
44  {
45  PHDataNode<Event> *newNode = new PHDataNode<Event>(evt,"PRDF","Event");
46  topNode->addNode(newNode);
47  }
48  syncobject = new SyncObjectv2();
49  return ;
50 }
51 
53 {
54  if (isopen)
55  {
56  fileclose();
57  }
58  delete syncobject;
59 }
60 
61 int Fun4AllPrdfInputManager::fileopen(const string &filenam)
62 {
63  if (isopen)
64  {
65  cout << "Closing currently open file "
66  << filename
67  << " and opening " << filenam << endl;
68  fileclose();
69  }
70  filename = filenam;
71  //FROG frog;
72  //string fname = frog.location(filename.c_str());
73  string fname = filename;
74  if (verbosity > 0)
75  {
76  cout << ThisName << ": opening file " << filename.c_str() << endl;
77  }
78  int status = 0;
79  eventiterator = new fileEventiterator(fname.c_str(), status);
80  events_thisfile = 0;
81  if (status)
82  {
83  delete eventiterator;
85  cout << PHWHERE << ThisName << ": could not open file " << fname << endl;
86  return -1;
87  }
88  pair<int, int> runseg = Fun4AllUtils::GetRunSegment(fname);
89  segment = runseg.second;
90  isopen = 1;
91  AddToFileOpened(fname); // add file to the list of files which were opened
92  return 0;
93 }
94 
96 {
97  readagain:
98  if (!isopen)
99  {
100  if (filelist.empty())
101 
102  {
103  if (verbosity > 0)
104  {
105  cout << Name() << ": No Input file open" << endl;
106  }
107  return -1;
108  }
109  else
110  {
111  if (OpenNextFile())
112  {
113  cout << Name() << ": No Input file from filelist opened" << endl;
114  return -1;
115  }
116  }
117  }
118  if (verbosity > 3)
119  {
120  cout << "Getting Event from " << Name() << endl;
121  }
122  // cout << "running event " << nevents << endl;
123  PHNodeIterator iter(topNode);
124  PHDataNode<Event> *PrdfNode = dynamic_cast<PHDataNode<Event> *>(iter.findFirst("PHDataNode","PRDF"));
125  if (save_evt) // if an event was pushed back, copy saved pointer and reset save_evt pointer
126  {
127  evt = save_evt;
128  save_evt = NULL;
129  events_thisfile--;
130  events_total--;
131  }
132  else
133  {
134  evt = eventiterator->getNextEvent();
135  }
136  PrdfNode->setData(evt);
137  if (!evt)
138  {
139  fileclose();
140  goto readagain;
141  }
142  if (verbosity > 1)
143  {
144  cout << ThisName << " PRDF run " << evt->getRunNumber() << ", evt no: " << evt->getEvtSequence() << endl;
145  }
146  events_total++;
147  events_thisfile++;
148  SetRunNumber(evt->getRunNumber());
151  mySyncManager->CurrentEvent(evt->getEvtSequence());
154  syncobject->RunNumber(evt->getRunNumber());
155  syncobject->EventNumber(evt->getEvtSequence());
156  // check if the local SubsysReco discards this event
158  {
159  ResetEvent();
160  goto readagain;
161  }
162  return 0;
163 }
164 
166 {
167  if (!isopen)
168  {
169  cout << Name() << ": fileclose: No Input file open" << endl;
170  return -1;
171  }
172  delete eventiterator;
174  isopen = 0;
175  // if we have a file list, move next entry to top of the list
176  // or repeat the same entry again
177  if (!filelist.empty())
178  {
179  if (repeat)
180  {
181  filelist.push_back(*(filelist.begin()));
182  if (repeat > 0)
183  {
184  repeat--;
185  }
186  }
187  filelist.pop_front();
188  }
189 
190  return 0;
191 }
192 
193 
194 void
195 Fun4AllPrdfInputManager::Print(const string &what) const
196 {
198  return ;
199 }
200 
201 int
203 {
204  while (!filelist.empty())
205  {
206  list<string>::const_iterator iter = filelist.begin();
207  if (verbosity)
208  {
209  cout << PHWHERE << " opening next file: " << *iter << endl;
210  }
211  if (fileopen(*iter))
212  {
213  cout << PHWHERE << " could not open file: " << *iter << endl;
214  filelist.pop_front();
215  }
216  else
217  {
218  return 0;
219  }
220 
221  }
222  return -1;
223 }
224 
225 int
227 {
228  PHNodeIterator iter(topNode);
229  PHDataNode<Event> *PrdfNode = dynamic_cast<PHDataNode<Event> *>(iter.findFirst("PHDataNode","PRDF"));
230  PrdfNode->setData(NULL); // set pointer in Node to NULL before deleting it
231  delete evt;
232  evt = NULL;
233  syncobject->Reset();
234  return 0;
235 }
236 
237 int
239 {
240  // PushBackEvents is supposedly pushing events back on the stack which works
241  // easily with root trees (just grab a different entry) but hard in these HepMC ASCII files.
242  // A special case is when the synchronization fails and we need to only push back a single
243  // event. In this case we save the evt pointer as save_evt which is used in the run method
244  // instead of getting the next event.
245  if (i > 0)
246  {
247  if (i == 1 && evt) // check on evt pointer makes sure it is not done from the cmd line
248  {
249  save_evt = evt;
250  return 0;
251  }
252  cout << PHWHERE << ThisName
253  << " Fun4AllPrdfInputManager cannot push back " << i << " events into file"
254  << endl;
255  return -1;
256  }
257  if (!eventiterator)
258  {
259  cout << PHWHERE << ThisName
260  << " no file open" << endl;
261  return -1;
262  }
263  // Skipping events is implemented as
264  // pushing a negative number of events on the stack, so in order to implement
265  // the skipping of events we read -i events.
266  int nevents = -i; // negative number of events to push back -> skip num events
267  int errorflag = 0;
268  while (nevents > 0 && ! errorflag)
269  {
270  evt = eventiterator->getNextEvent();
271  if (! evt)
272  {
273  cout << "Error after skipping " << i - nevents
274  << " file exhausted?" << endl;
275  errorflag = -1;
276  fileclose();
277  }
278  else
279  {
280  if (verbosity > 3)
281  {
282  cout << "Skipping evt no: " << evt->getEvtSequence() << endl;
283  }
284  }
285  delete evt;
286  nevents--;
287  }
288  return errorflag;
289 }
290 
291 int
293 {
294  // here we copy the sync object from the current file to the
295  // location pointed to by mastersync. If mastersync is a 0 pointer
296  // the syncobject is cloned. If mastersync allready exists the content
297  // of syncobject is copied
298  if (!(*mastersync))
299  {
300  if (syncobject) *mastersync = syncobject->clone();
301  }
302  else
303  {
304  *(*mastersync) = *syncobject; // copy syncobject content
305  }
307 }
308 
309 int
311 {
312  if (!mastersync)
313  {
314  cout << PHWHERE << Name() << " No MasterSync object, cannot perform synchronization" << endl;
315  cout << "Most likely your first file does not contain a SyncObject and the file" << endl;
316  cout << "opened by the Fun4AllDstInputManager with Name " << Name() << " has one" << endl;
317  cout << "Change your macro and use the file opened by this input manager as first input" << endl;
318  cout << "and you will be okay. Fun4All will not process the current configuration" << endl << endl;
320  }
321  int iret = syncobject->Different(mastersync);
322  if (iret)
323  {
324  cout << "big problem" << endl;
325  exit(1);
326  }
328 }
#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 Print(const std::string &what="ALL") const
Fun4AllSyncManager * mySyncManager
std::list< std::string > filelist
void AddToFileOpened(const std::string &filename)
virtual void SetRunNumber(const int runno)
Fun4AllPrdfInputManager(const std::string &name="DUMMY", const std::string &topnodename="TOP")
void Print(const std::string &what="ALL") const
int GetSyncObject(SyncObject **mastersync)
int run(const int nevents=0)
int fileopen(const std::string &filenam)
int SyncIt(const SyncObject *mastersync)
static Fun4AllServer * instance()
PHCompositeNode * topNode() const
Definition: Fun4AllServer.h:59
void CurrentEvent(const int evt)
void SegmentNumber(const int iseg)
void PrdfEvents(const int i)
PHBoolean addNode(PHNode *)
void setData(T *d)
Definition: PHDataNode.h:22
PHNode * findFirst(const std::string &, const std::string &)
virtual int Different(const SyncObject *other) const
Definition: SyncObject.cc:47
virtual void SegmentNumber(const int)
set Segment Number
Definition: SyncObject.h:40
virtual void Reset()
Clear Sync.
Definition: SyncObject.cc:9
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
std::pair< int, int > GetRunSegment(const std::string &filename)
Definition: Fun4AllUtils.cc:26
#define PHWHERE
Definition: phool.h:23