Class Reference for E1039 Core & Analysis Software
Fun4AllOscarInputManager.cc
Go to the documentation of this file.
2 #include "PHHepMCGenEventMap.h"
3 
7 #include <phool/recoConsts.h>
8 #include <phool/getClass.h>
9 
10 #include <ffaobjects/RunHeader.h>
11 
12 
13 #include <frog/FROG.h>
14 #include <phool/PHCompositeNode.h>
15 #include <phool/PHDataNode.h>
16 #include <phool/PHObject.h>
17 
18 #include <HepMC/IO_GenEvent.h>
19 #include <HepMC/GenEvent.h>
20 
21 #include <TString.h>
22 #include <TPRegexp.h>
23 
24 #include <fstream>
25 #include <istream>
26 #include <iostream>
27 #include <sstream>
28 
29 #include <boost/iostreams/filtering_streambuf.hpp>
30 #include <boost/iostreams/filter/bzip2.hpp>
31 #include <boost/iostreams/filter/gzip.hpp>
32 
33 #include <cstdlib>
34 #include <memory>
35 
36 using namespace std;
37 
38 static boost::iostreams::filtering_streambuf<boost::iostreams::input> zinbuffer;
39 static const double toMM = 1.e-12;
41 
42 Fun4AllOscarInputManager::Fun4AllOscarInputManager(const string &name, const string &topnodename) :
43  Fun4AllInputManager(name, ""),
44  isopen(0),
45  events_total(0),
46  events_thisfile(0),
47  topNodeName(topnodename),
48  evt(NULL),
49  skipEvents(0),
50  skippedEvents(0),
51  filestream(NULL),
52  unzipstream(NULL),
53  isCompressed(false)
54 {
56  topNode = se->topNode(topNodeName.c_str());
57  PHNodeIterator iter(topNode);
58  PHCompositeNode *dstNode = se->getNode(InputNode.c_str(), topNodeName.c_str());
59 
60  PHHepMCGenEventMap *geneventmap = findNode::getClass<PHHepMCGenEventMap>(topNode, "PHHepMCGenEventMap");
61  if (!geneventmap)
62  {
63  geneventmap = new PHHepMCGenEventMap();
64  PHIODataNode<PHObject> *newmapnode = new PHIODataNode<PHObject>(geneventmap, "PHHepMCGenEventMap", "PHObject");
65  dstNode->addNode(newmapnode);
66  }
67 
68  hepmc_helper.set_geneventmap(geneventmap);
69 
70 }
71 
73 {
74  fileclose();
75  delete filestream;
76  delete unzipstream;
77 }
78 
79 int
80 Fun4AllOscarInputManager::fileopen(const string &filenam)
81 {
82  if (!mySyncManager)
83  {
84  cout << "Call fileopen only after you registered your Input Manager " << Name() << " with the Fun4AllServer" << endl;
85  exit(1);
86  }
87  if (isopen)
88  {
89  cout << "Closing currently open file "
90  << filename
91  << " and opening " << filenam << endl;
92  fileclose();
93  }
94  filename = filenam;
95  FROG frog;
96  string fname(frog.location(filename.c_str()));
97  if (verbosity > 0)
98  {
99  cout << ThisName << ": opening file " << fname << endl;
100  }
101 
102  TString tstr(fname);
103  TPRegexp bzip_ext(".bz2$");
104  TPRegexp gzip_ext(".gz$");
105  if (tstr.Contains(bzip_ext))
106  {
107  // use boost iosteam library to decompress bz2 on the fly
108  filestream = new ifstream(fname.c_str(), std::ios::in | std::ios::binary);
109  zinbuffer.push(boost::iostreams::bzip2_decompressor());
110  zinbuffer.push(*filestream);
111  unzipstream = new istream(&zinbuffer);
112  isCompressed = true;
113  }
114  else if (tstr.Contains(gzip_ext))
115  {
116  // use boost iosream to decompress the gzip file on the fly
117  filestream = new ifstream(fname.c_str(), std::ios::in | std::ios::binary);
118  zinbuffer.push(boost::iostreams::gzip_decompressor());
119  zinbuffer.push(*filestream);
120  unzipstream = new istream(&zinbuffer);
121  isCompressed = true;
122  }
123  else
124  {
125  theOscarFile.open(fname.c_str());
126  }
127 
129  static bool run_number_forced = rc->FlagExist("RUNNUMBER");
130  if ( run_number_forced )
131  {
132  mySyncManager->CurrentRun(rc->get_IntFlag("RUNNUMBER"));
133  }
134  else
135  {
137  }
138  events_thisfile = 0;
139  isopen = 1;
140  AddToFileOpened(fname); // add file to the list of files which were opened
141  return 0;
142 }
143 
145 {
146  readagain:
147  if (!isopen)
148  {
149  if (!filelist.size())
150  {
151  if (verbosity > 0)
152  {
153  cout << Name() << ": No Input file open" << endl;
154  }
155  return 0;
156  }
157  else
158  {
159  if (OpenNextFile())
160  {
161  cout << Name() << ": No Input file from filelist opened" << endl;
162  return 0;
163  }
164  }
165  }
166 
167  //Read oscar
168  evt = new HepMC::GenEvent(HepMC::Units::GEV, HepMC::Units::MM);
169  int code = ConvertFromOscar();
170  /*
171  if(skippedEvents < skipEvents || code == 3)
172  {
173  goto readagain;
174  }
175  */
176  if (code == 1 || evt == NULL)
177  {
178  if (verbosity > 1) cout << "Finished file!" << endl;
179  fileclose();
180  goto readagain;
181  }
182 
183 // if(verbosity > 4) cout << "SIZE: " << phhepmcgenevt->size() << endl;
184  //mySyncManager->CurrentEvent(evt->event_number());
185  events_total++;
186  events_thisfile++;
187 
188  // check if the local SubsysReco discards this event
190  {
191  //ResetEvent();
192  goto readagain;
193  }
194 
195  if(events_total < nevents)
196  {
197  //ResetEvent();
198  goto readagain;
199  }
200 
201  return 0;
202 }
203 
204 int
206 {
207  if (!isopen)
208  {
209  cout << Name() << ": fileclose: No Input file open" << endl;
210  return -1;
211  }
212  if(isCompressed)
213  {
214  filestream->close();
215  }
216  else
217  {
218  theOscarFile.close();
219  }
220  isopen = 0;
221  // if we have a file list, move next entry to top of the list
222  // or repeat the same entry again
223  if (filelist.size() > 0)
224  {
225  if (repeat)
226  {
227  filelist.push_back(*(filelist.begin()));
228  if (repeat > 0)
229  {
230  repeat--;
231  }
232  }
233  filelist.pop_front();
234  }
235  return 0;
236 }
237 
238 
239 void
240 Fun4AllOscarInputManager::Print(const string &what) const
241 {
243  return ;
244 }
245 
246 int
248 {
249  while (filelist.size() > 0)
250  {
251  list<string>::const_iterator iter = filelist.begin();
252  if (verbosity)
253  {
254  cout << PHWHERE << " opening next file: " << *iter << endl;
255  }
256  if (fileopen((*iter).c_str()))
257  {
258  cout << PHWHERE << " could not open file: " << *iter << endl;
259  filelist.pop_front();
260  }
261  else
262  {
263  return 0;
264  }
265 
266  }
267  return -1;
268 }
269 
270 int
272 {
273  //delete evt;
274  //evt = NULL;
275  return 0;
276 }
277 
278 int
280 {
281  int counter = 0;
282 
283  while(counter < i)
284  {
285  std::string theLine;
286  while(getline(theOscarFile, theLine))
287  {
288  if(theLine.find("#") == 0) continue;
289  vector<double> theInfo;
290  double number;
291  for(istringstream numbers_iss(theLine); numbers_iss >> number; )
292  {
293  theInfo.push_back(number);
294  }
295 
296  if(theInfo.size() == 2 && theInfo[0] == 0 && theInfo[1] == 0)
297  {
298  counter++;
299  skippedEvents++;
300  break;
301  }
302  else if (theInfo.size() == 2 && theInfo[0] == 0 && theInfo[1] > 0)
303  {
304  continue;
305  }
306  }
307 
308  }
309 
310  if(theOscarFile.eof()) return -1;
311 
312 
313  return 0;
314 
315 
316 
317 }
318 
319 
320 int
322 {
323 
324  delete evt;
325  evt = NULL;
326 
327  if(theOscarFile.eof()) // if the file is exhausted bail out during this next read
328  {
329  cout << "Oscar EOF" << endl;
330  return 1;
331  }
332  evt = new HepMC::GenEvent(HepMC::Units::GEV, HepMC::Units::MM);
333 
334  if(verbosity > 1) cout << "Reading Oscar Event " << events_total+skippedEvents+1 << endl;
335  //Grab New Event From Oscar
336  string theLine;
337  vector< vector<double> > theEventVec;
338  vector< HepMC::FourVector > theVtxVec;
339  if(isCompressed)
340  {
341  // while(getline(unzipstream, theLine))
342  // {
343  // if(theLine.find("#") == 0) continue;
344  // vector<double> theInfo; //format: N,pid,px,py,pz,E,mass,xvtx,yvtx,zvtx,?
345  // double number;
346  // for(istringstream numbers_iss(theLine); numbers_iss >> number; )
347  // {
348  // theInfo.push_back(number);
349  // }
350 
351  // if(theInfo.size() == 2 && theInfo[0] == 0 && theInfo[1] == 0)
352  // {
353  // break;
354  // }
355  // else if (theInfo.size() == 2 && theInfo[0] == 0 && theInfo[1] > 0)
356  // {
357  // continue;
358  // }
359  // else
360  // {
361  // theEventVec.push_back(theInfo);
362  // HepMC::FourVector vert(theInfo[8]*toMM, theInfo[9]*toMM, theInfo[10]*toMM, theInfo[11]);
363  // theVtxVec.push_back(vert);
364  // }
365 
366  // }//while(getline)
367  }
368  else
369  {
370  while(getline(theOscarFile, theLine))
371  {
372  if(theLine.find("#") == 0) continue;
373  vector<double> theInfo; //format: N,pid,px,py,pz,E,mass,xvtx,yvtx,zvtx,?
374  double number;
375  for(istringstream numbers_iss(theLine); numbers_iss >> number; )
376  {
377  theInfo.push_back(number);
378  }
379 
380  if(theInfo.size() == 2 && theInfo[0] == 0 && theInfo[1] == 0)
381  {
382  break;
383  }
384  else if (theInfo.size() == 2 && theInfo[0] == 0 && theInfo[1] > 0)
385  {
386  continue;
387  }
388  else
389  {
390  theEventVec.push_back(theInfo);
391  }
392 
393  }//while(getline)
394 
395  }
396 
397  /*
398  if(skippedEvents < skipEvents)
399  {
400  skippedEvents++;
401  if (verbosity > 5) cout << "Skipping event " << skippedEvents << endl;
402  return 2;
403  }
404  */
405 
406  //Set Event Number
407  evt->set_event_number(events_total+1);
408 
409  //Loop Over One Event, Fill particles
410  std::vector<HepMC::GenParticle*> hepevt_particles( theEventVec.size() );
411  for(unsigned int i = 0; i < theEventVec.size(); i++)
412  {
413  //int N = (int)theEventVec[i][0];
414  int pid = (int)theEventVec[i][1];
415  double px = theEventVec[i][3];
416  double py = theEventVec[i][4];
417  double pz = theEventVec[i][5];
418  double E = theEventVec[i][6];
419  double m = theEventVec[i][7];
420  int status = 1;//oscar only writes final state particles
421 
422  hepevt_particles[i] = new HepMC::GenParticle( HepMC::FourVector( px, py, pz, E ), pid, status );
423  hepevt_particles[i]->setGeneratedMass(m);
424  hepevt_particles[i]->suggest_barcode(i + 1);
425 
426  }
427 
428  for (unsigned int i = 0; i < theEventVec.size(); i++)
429  {
430  HepMC::GenParticle *p = hepevt_particles[i];
431  HepMC::GenVertex* prod_vtx = p->production_vertex();
432  if ( prod_vtx ) prod_vtx->add_particle_out( p );
433 
434  bool found = false;
435  HepMC::FourVector prod_pos( theEventVec[i][8]*toMM, theEventVec[i][9]*toMM, theEventVec[i][10]*toMM, theEventVec[i][11] );
436  if ( !prod_vtx )
437  {
438  //See if the vertex is already in the event
439  for(HepMC::GenEvent::vertex_iterator v = evt->vertices_begin(); v != evt->vertices_end(); ++v)
440  {
441  HepMC::GenVertex *theV = *v;
442  if(theV->position().x() != prod_pos.x()) continue;
443  if(theV->position().y() != prod_pos.y()) continue;
444  if(theV->position().z() != prod_pos.z()) continue;
445  found = true;
446  theV->add_particle_out(p);
447  }
448  if(!found)
449  {
450  //Didn't find vertex, add it
451  prod_vtx = new HepMC::GenVertex(prod_pos);
452  prod_vtx->add_particle_out( p );
453  evt->add_vertex( prod_vtx );
454  }
455  }
456 
457  // If prod_vtx doesn't already have position specified, fill it.
458  if ( !found && prod_vtx && prod_vtx->position() == HepMC::FourVector() ) prod_vtx->set_position( prod_pos );
459 
460  }
461 
462 
463  evt->print();
464  if(verbosity > 5) evt->print();
465  if(verbosity > 3) cout << "Adding Event to phhepmcgenevt" << endl;
466 
469  if (ievt != hepmc_helper.get_geneventmap()->end())
470  {
471  // override existing event
472  ievt->second->addEvent(evt);
473  }
474  else
476  return 0;
477 
478 }
479 
PHIODataNode< PHObject > PHObjectNode_t
static const double toMM
static boost::iostreams::filtering_streambuf< boost::iostreams::input > zinbuffer
#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)
void Print(const std::string &what="ALL") const
int run(const int nevents=0)
Fun4AllOscarInputManager(const std::string &name="DUMMY", const std::string &topnodename="TOP")
int fileopen(const std::string &filenam)
PHHepMCGenHelper hepmc_helper
helper for insert HepMC event to DST node and add vertex smearing
static Fun4AllServer * instance()
PHCompositeNode * topNode() const
Definition: Fun4AllServer.h:59
PHCompositeNode * getNode(const char *name, const char *topnodename="TOP")
PHBoolean addNode(PHNode *)
virtual int FlagExist(const std::string &name) const
Definition: PHFlag.cc:255
virtual int get_IntFlag(const std::string &name) const
Definition: PHFlag.cc:117
PHHepMCGenEventMap is collection of HEPMC events input into this simulation map of embedding ID -> PH...
std::map< int, PHHepMCGenEvent * >::iterator Iter
ConstIter end() const
ConstIter find(unsigned int idkey) const
find
void set_geneventmap(PHHepMCGenEventMap *geneventmap)
const PHHepMCGenEventMap * get_geneventmap() const
int get_embedding_id() const
PHHepMCGenEvent * insert_event(HepMC::GenEvent *evt)
send HepMC::GenEvent to DST tree. This function takes ownership of evt
static recoConsts * instance()
Definition: recoConsts.cc:7
#define PHWHERE
Definition: phool.h:23