Class Reference for E1039 Core & Analysis Software
Fun4AllHepMCOutputManager.cc
Go to the documentation of this file.
2 
3 #include "PHHepMCGenEvent.h"
4 #include "PHHepMCGenEventMap.h"
5 
8 #include <phool/getClass.h>
9 
10 #include <HepMC/IO_GenEvent.h>
11 #include <HepMC/GenEvent.h>
12 
13 #include <iostream>
14 #include <string>
15 #include <vector>
16 
17 #include <TString.h>
18 #include <TPRegexp.h>
19 
20 #include <ostream>
21 #include <cassert>
22 #include <fstream>
23 
24 #include <boost/iostreams/filtering_streambuf.hpp>
25 #include <boost/iostreams/filter/bzip2.hpp>
26 #include <boost/iostreams/filter/gzip.hpp>
27 
28 using namespace std;
29 
30 static boost::iostreams::filtering_streambuf<boost::iostreams::output> zoutbuffer;
31 
33  const string &filename):
34  Fun4AllOutputManager( myname ),
35  outfilename(filename),
36  comment_written(0),
37  filestream(NULL),
38  zipstream(NULL),
39  _embedding_id(0)
40 {
41  TString tstr(filename);
42  TPRegexp bzip_ext(".bz2$");
43  TPRegexp gzip_ext(".gz$");
44 
45  if (tstr.Contains(bzip_ext)) {
46  // use boost iosteam library to compress to bz2 file on the fly
47  filestream = new ofstream(filename.c_str(), std::ios::out | std::ios::binary);
48  zoutbuffer.push(boost::iostreams::bzip2_compressor(9));
49  zoutbuffer.push(*filestream);
50  zipstream = new ostream(&zoutbuffer);
51  ascii_out = new HepMC::IO_GenEvent(*zipstream);
52 
53  } else if (tstr.Contains(gzip_ext)) {
54  // use boost iosream to compress to gzip file on the fly
55  filestream = new ofstream(filename.c_str(), std::ios::out | std::ios::binary);
56  zoutbuffer.push(boost::iostreams::gzip_compressor(9));
57  zoutbuffer.push(*filestream);
58  zipstream = new ostream(&zoutbuffer);
59  ascii_out = new HepMC::IO_GenEvent(*zipstream);
60 
61  } else {
62  // produces normal ascii hepmc file
63  ascii_out = new HepMC::IO_GenEvent(filename,std::ios::out);
64  }
65 
66  if (ascii_out->rdstate())
67  {
68  cout << "error opening " << outfilename << " exiting " << endl;
69  exit(1);
70  }
71  return ;
72 }
73 
75 {
76  if (ascii_out)
77  {
78  if (!comment_written)
79  {
80  if (comment.size())
81  {
82  ascii_out->write_comment(comment);
83  }
84  }
85  ascii_out->clear();
86  }
87 
88  delete ascii_out;
89 
90  if (zoutbuffer.size() > 0) zoutbuffer.reset();
91 
92  if (zipstream) delete zipstream;
93  if (filestream) delete filestream;
94 
95  return ;
96 }
97 
98 
99 void
100 Fun4AllHepMCOutputManager::Print(const string &what) const
101 {
102  cout << ThisName << " writes " << outfilename << endl;
103  if (comment.size())
104  {
105  cout << "comment : " << comment << endl;
106  }
107  // base class print method
109 
110  return ;
111 }
112 
114 {
115  if (!comment_written)
116  {
117  if (comment.size())
118  {
119  ascii_out->write_comment(comment);
120  }
121  comment_written = 1;
122  }
123 
124  PHHepMCGenEventMap *geneventmap = findNode::getClass<PHHepMCGenEventMap>(topNode, "PHHepMCGenEventMap");
125 
126  if (!geneventmap)
127  {
128  cout << "Fun4AllHepMCOutputManager::Write - Fatal Error - missing source node PHHepMCGenEventMap" << endl;
130  }
131  assert(geneventmap);
132 
133  PHHepMCGenEvent *genevt = geneventmap->get(_embedding_id);
134  if (!genevt)
135  {
136  cout << "Fun4AllHepMCOutputManager::Write - Warning - missing sub-event with embedding ID" << _embedding_id<<" on node PHHepMCGenEventMap" << endl;
138  }
139  assert(genevt);
140 
141  HepMC::GenEvent *evt = genevt->getEvent();
142  if (!evt)
143  {
144  cout << PHWHERE << "0 HepMC Pointer" << endl;
146  }
147  assert(evt);
148 
149  nEvents++;
150  ascii_out->write_event(evt);
152 }
153 
154 int
156 {
157  comment = text;
158  comment_written = 0;
159  return 0;
160 }
static boost::iostreams::filtering_streambuf< boost::iostreams::output > zoutbuffer
#define NULL
Definition: Pdb.h:9
std::string ThisName
Definition: Fun4AllBase.h:72
int Write(PHCompositeNode *startNode)
write starting from given node
Fun4AllHepMCOutputManager(const std::string &myname="HEPMCOUT", const std::string &filename="hepmcout.txt")
void Print(const std::string &what="ALL") const
print method (dump event selector)
int AddComment(const std::string &text)
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()
#define PHWHERE
Definition: phool.h:23