Class Reference for E1039 Core & Analysis Software
Fun4AllHepMCOutputManager.h
Go to the documentation of this file.
1 #ifndef FUN4ALLHEPMCOUTPUTMANAGER_H__
2 #define FUN4ALLHEPMCOUTPUTMANAGER_H__
3 
4 
6 #include <string>
7 
8 #include <fstream>
9 #include <ostream>
10 
11  namespace HepMC {
12  class IO_GenEvent;
13  };
14 
15 
16 class PHCompositeNode;
17 
19 {
20  public:
21 
22  Fun4AllHepMCOutputManager(const std::string &myname = "HEPMCOUT",
23  const std::string &filename = "hepmcout.txt");
24 
26 
27  int outfileopen(const std::string& /*fname*/) {return 0;}
28 
29  void Print(const std::string &what = "ALL") const;
30 
31  int Write(PHCompositeNode *startNode);
32 
33  int AddComment(const std::string &text);
34 
39  int get_embedding_id() const { return _embedding_id; }
40  //
45  void set_embedding_id(int id) { _embedding_id = id; }
46 
47  protected:
48  std::string outfilename;
49  HepMC::IO_GenEvent *ascii_out;
50  std::string comment;
52 
53  // some pointers for use in compression handling
54  std::ofstream *filestream; // holds compressed filestream
55  std::ostream *zipstream; // feed into HepMC
56 
61 };
62 
63 #endif /* FUN4ALLHEPMCOUTPUTMANAGER_H__ */
int Write(PHCompositeNode *startNode)
write starting from given node
Fun4AllHepMCOutputManager(const std::string &myname="HEPMCOUT", const std::string &filename="hepmcout.txt")
int outfileopen(const std::string &)
opens output file
void Print(const std::string &what="ALL") const
print method (dump event selector)
int AddComment(const std::string &text)