13 #include <frog/FROG.h>
18 #include <HepMC/IO_GenEvent.h>
19 #include <HepMC/GenEvent.h>
29 #include <boost/iostreams/filtering_streambuf.hpp>
30 #include <boost/iostreams/filter/bzip2.hpp>
31 #include <boost/iostreams/filter/gzip.hpp>
38 static boost::iostreams::filtering_streambuf<boost::iostreams::input>
zinbuffer;
39 static const double toMM = 1.e-12;
47 topNodeName(topnodename),
84 cout <<
"Call fileopen only after you registered your Input Manager " <<
Name() <<
" with the Fun4AllServer" << endl;
89 cout <<
"Closing currently open file "
91 <<
" and opening " << filenam << endl;
96 string fname(frog.location(
filename.c_str()));
99 cout <<
ThisName <<
": opening file " << fname << endl;
103 TPRegexp bzip_ext(
".bz2$");
104 TPRegexp gzip_ext(
".gz$");
105 if (tstr.Contains(bzip_ext))
108 filestream =
new ifstream(fname.c_str(), std::ios::in | std::ios::binary);
109 zinbuffer.push(boost::iostreams::bzip2_decompressor());
114 else if (tstr.Contains(gzip_ext))
117 filestream =
new ifstream(fname.c_str(), std::ios::in | std::ios::binary);
118 zinbuffer.push(boost::iostreams::gzip_decompressor());
129 static bool run_number_forced = rc->
FlagExist(
"RUNNUMBER");
130 if ( run_number_forced )
153 cout <<
Name() <<
": No Input file open" << endl;
161 cout <<
Name() <<
": No Input file from filelist opened" << endl;
168 evt =
new HepMC::GenEvent(HepMC::Units::GEV, HepMC::Units::MM);
178 if (
verbosity > 1) cout <<
"Finished file!" << endl;
209 cout <<
Name() <<
": fileclose: No Input file open" << endl;
251 list<string>::const_iterator iter =
filelist.begin();
254 cout <<
PHWHERE <<
" opening next file: " << *iter << endl;
258 cout <<
PHWHERE <<
" could not open file: " << *iter << endl;
288 if(theLine.find(
"#") == 0)
continue;
289 vector<double> theInfo;
291 for(istringstream numbers_iss(theLine); numbers_iss >> number; )
293 theInfo.push_back(number);
296 if(theInfo.size() == 2 && theInfo[0] == 0 && theInfo[1] == 0)
302 else if (theInfo.size() == 2 && theInfo[0] == 0 && theInfo[1] > 0)
329 cout <<
"Oscar EOF" << endl;
332 evt =
new HepMC::GenEvent(HepMC::Units::GEV, HepMC::Units::MM);
337 vector< vector<double> > theEventVec;
338 vector< HepMC::FourVector > theVtxVec;
372 if(theLine.find(
"#") == 0)
continue;
373 vector<double> theInfo;
375 for(istringstream numbers_iss(theLine); numbers_iss >> number; )
377 theInfo.push_back(number);
380 if(theInfo.size() == 2 && theInfo[0] == 0 && theInfo[1] == 0)
384 else if (theInfo.size() == 2 && theInfo[0] == 0 && theInfo[1] > 0)
390 theEventVec.push_back(theInfo);
410 std::vector<HepMC::GenParticle*> hepevt_particles( theEventVec.size() );
411 for(
unsigned int i = 0; i < theEventVec.size(); i++)
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];
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);
428 for (
unsigned int i = 0; i < theEventVec.size(); i++)
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 );
435 HepMC::FourVector prod_pos( theEventVec[i][8]*
toMM, theEventVec[i][9]*
toMM, theEventVec[i][10]*
toMM, theEventVec[i][11] );
439 for(HepMC::GenEvent::vertex_iterator v =
evt->vertices_begin(); v !=
evt->vertices_end(); ++v)
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;
446 theV->add_particle_out(p);
451 prod_vtx =
new HepMC::GenVertex(prod_pos);
452 prod_vtx->add_particle_out( p );
453 evt->add_vertex( prod_vtx );
458 if ( !found && prod_vtx && prod_vtx->position() == HepMC::FourVector() ) prod_vtx->set_position( prod_pos );
465 if(
verbosity > 3) cout <<
"Adding Event to phhepmcgenevt" << endl;
472 ievt->second->addEvent(
evt);
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")
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()