17 #include <HepMC/GenEvent.h>
18 #include <HepMC/IO_GenEvent.h>
29 #include <boost/iostreams/filter/bzip2.hpp>
30 #include <boost/iostreams/filter/gzip.hpp>
37 #include <gsl/gsl_const.h>
41 static const double toMM = 1.e-12;
49 , topNodeName(topnodename)
89 cout <<
"Call fileopen only after you registered your Input Manager " <<
Name() <<
" with the Fun4AllServer" << endl;
94 cout <<
"Closing currently open file "
96 <<
" and opening " << filenam << endl;
105 cout <<
ThisName <<
": opening file " << fname << endl;
115 TPRegexp bzip_ext(
".bz2$");
116 TPRegexp gzip_ext(
".gz$");
117 if (tstr.Contains(bzip_ext))
120 filestream =
new ifstream(fname.c_str(), std::ios::in | std::ios::binary);
121 zinbuffer.push(boost::iostreams::bzip2_decompressor());
126 else if (tstr.Contains(gzip_ext))
129 filestream =
new ifstream(fname.c_str(), std::ios::in | std::ios::binary);
130 zinbuffer.push(boost::iostreams::gzip_decompressor());
138 ascii_in =
new HepMC::IO_GenEvent(fname, std::ios::in);
143 static bool run_number_forced = rc->
FlagExist(
"RUNNUMBER");
144 if (run_number_forced)
170 cout <<
"Fun4AllHepMCInputManager::run::" <<
Name() <<
": No Input file open" << endl;
178 cout <<
"Fun4AllHepMCInputManager::run::" <<
Name() <<
": No Input file from filelist opened" << endl;
205 cout <<
"Fun4AllHepMCInputManager::run::" <<
Name()
206 <<
": error type: " <<
ascii_in->error_type()
207 <<
", rdstate: " <<
ascii_in->rdstate() << endl;
216 cout <<
"Fun4AllHepMCInputManager::run::" <<
Name()
217 <<
": hepmc evt no: " <<
evt->event_number() << endl;
225 ievt->second->addEvent(
evt);
250 cout <<
Name() <<
": fileclose: No Input file open" << endl;
290 list<string>::const_iterator iter =
filelist.begin();
293 cout <<
PHWHERE <<
" opening next file: " << *iter << endl;
297 cout <<
PHWHERE <<
" could not open file: " << *iter << endl;
321 cout <<
ThisName <<
": pushing back evt no " <<
evt->event_number() << endl;
327 <<
" Fun4AllHepMCInputManager cannot pop back events into file"
334 <<
" no file opened yet" << endl;
342 while (
nevents > 0 && !errorflag)
347 cout <<
"Error after skipping " << i -
nevents << endl;
348 cout <<
"error type: " <<
ascii_in->error_type()
349 <<
", rdstate: " <<
ascii_in->rdstate() << endl;
357 cout <<
"Skipping evt no: " <<
evt->event_number() << endl;
377 evt =
new HepMC::GenEvent(HepMC::Units::GEV, HepMC::Units::CM);
382 vector<vector<double> > theEventVec;
383 vector<HepMC::FourVector> theVtxVec;
386 if (theLine.find(
"#") == 0)
continue;
387 vector<double> theInfo;
389 for (istringstream numbers_iss(theLine); numbers_iss >> number;)
391 theInfo.push_back(number);
394 if (theInfo.size() == 2 && theInfo[0] == 0 && theInfo[1] == 0)
398 else if (theInfo.size() == 2 && theInfo[0] == 0 && theInfo[1] > 0)
404 theEventVec.push_back(theInfo);
405 HepMC::FourVector vert(theInfo[8] *
toMM, theInfo[9] *
toMM, theInfo[10] *
toMM, theInfo[11]);
406 theVtxVec.push_back(vert);
415 for (
unsigned int i = 0; i < theEventVec.size(); i++)
418 int pid = (int) theEventVec[i][1];
419 double px = theEventVec[i][3];
420 double py = theEventVec[i][4];
421 double pz = theEventVec[i][5];
422 double E = theEventVec[i][6];
423 double m = theEventVec[i][7];
426 HepMC::GenVertex *v =
new HepMC::GenVertex(theVtxVec[i]);
429 HepMC::GenParticle *p =
new HepMC::GenParticle(HepMC::FourVector(px, py, pz, E), pid, status);
430 p->setGeneratedMass(m);
431 p->suggest_barcode(i + 1);
432 v->add_particle_out(p);
int verbosity
The verbosity level. 0 means not verbose at all.
virtual const std::string Name() const
Returns the name of this module.
static Fun4AllServer * instance()
PHCompositeNode * topNode() const
PHCompositeNode * getNode(const char *name, const char *topnodename="TOP")
void CurrentEvent(const int evt)
PHBoolean addNode(PHNode *)
virtual int FlagExist(const std::string &name) const
virtual int get_IntFlag(const std::string &name) const
PHHepMCGenEventMap is collection of HEPMC events input into this simulation map of embedding ID -> PH...
std::map< int, PHHepMCGenEvent * >::iterator Iter
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()