10 #include <HepMC/IO_GenEvent.h>
11 #include <HepMC/GenEvent.h>
24 #include <boost/iostreams/filtering_streambuf.hpp>
25 #include <boost/iostreams/filter/bzip2.hpp>
26 #include <boost/iostreams/filter/gzip.hpp>
30 static boost::iostreams::filtering_streambuf<boost::iostreams::output>
zoutbuffer;
33 const string &filename):
35 outfilename(filename),
41 TString tstr(filename);
42 TPRegexp bzip_ext(
".bz2$");
43 TPRegexp gzip_ext(
".gz$");
45 if (tstr.Contains(bzip_ext)) {
47 filestream =
new ofstream(filename.c_str(), std::ios::out | std::ios::binary);
48 zoutbuffer.push(boost::iostreams::bzip2_compressor(9));
53 }
else if (tstr.Contains(gzip_ext)) {
55 filestream =
new ofstream(filename.c_str(), std::ios::out | std::ios::binary);
56 zoutbuffer.push(boost::iostreams::gzip_compressor(9));
63 ascii_out =
new HepMC::IO_GenEvent(filename,std::ios::out);
68 cout <<
"error opening " <<
outfilename <<
" exiting " << endl;
105 cout <<
"comment : " <<
comment << endl;
124 PHHepMCGenEventMap *geneventmap = findNode::getClass<PHHepMCGenEventMap>(topNode,
"PHHepMCGenEventMap");
128 cout <<
"Fun4AllHepMCOutputManager::Write - Fatal Error - missing source node PHHepMCGenEventMap" << endl;
136 cout <<
"Fun4AllHepMCOutputManager::Write - Warning - missing sub-event with embedding ID" <<
_embedding_id<<
" on node PHHepMCGenEventMap" << endl;
141 HepMC::GenEvent *evt = genevt->
getEvent();
144 cout <<
PHWHERE <<
"0 HepMC Pointer" << endl;
static boost::iostreams::filtering_streambuf< boost::iostreams::output > zoutbuffer
HepMC::IO_GenEvent * ascii_out
int Write(PHCompositeNode *startNode)
write starting from given node
Fun4AllHepMCOutputManager(const std::string &myname="HEPMCOUT", const std::string &filename="hepmcout.txt")
std::ofstream * filestream
void Print(const std::string &what="ALL") const
print method (dump event selector)
int AddComment(const std::string &text)
virtual ~Fun4AllHepMCOutputManager()
virtual void Print(const std::string &what="ALL") const
print method (dump event selector)
size_t nEvents
Number of Events.
PHHepMCGenEventMap is collection of HEPMC events input into this simulation map of embedding ID -> PH...
const PHHepMCGenEvent * get(int idkey) const
fetch event
virtual HepMC::GenEvent * getEvent()