Class Reference for E1039 Core & Analysis Software
Fun4AllDstOutputManager.h
Go to the documentation of this file.
1 #ifndef __FUN4ALLDSTOUTPUTMANAGER_H__
2 #define __FUN4ALLDSTOUTPUTMANAGER_H__
3 
4 
5 #include "Fun4AllOutputManager.h"
6 #include <string>
7 #include <vector>
8 
9 class PHNodeIOManager;
10 class PHCompositeNode;
11 
13 {
14  public:
15 
16  Fun4AllDstOutputManager(const std::string &myname = "DSTOUT" , const std::string &filename = "dstout.root");
17  virtual ~Fun4AllDstOutputManager();
18 
19  int AddNode(const std::string &nodename);
20  int StripNode(const std::string &nodename);
21  int outfileopen(const std::string &fname);
22  int RemoveNode(const std::string &nodename);
23 
24  void Print(const std::string &what = "ALL") const;
25 
26  virtual int Write(PHCompositeNode *startNode);
27  virtual int WriteNode(PHCompositeNode *thisNode);
28 
29  void EnableRealTimeSave();
30 
31  protected:
32  std::vector <std::string> savenodes;
33  std::vector <std::string> stripnodes;
35 };
36 
37 #endif /* __FUN4ALLDSTOUTPUTMANAGER_H__ */
void Print(const std::string &what="ALL") const
print method (dump event selector)
std::vector< std::string > savenodes
int StripNode(const std::string &nodename)
not write a node in outputmanager
virtual int Write(PHCompositeNode *startNode)
write starting from given node
Fun4AllDstOutputManager(const std::string &myname="DSTOUT", const std::string &filename="dstout.root")
virtual int WriteNode(PHCompositeNode *thisNode)
write specified node
std::vector< std::string > stripnodes
int AddNode(const std::string &nodename)
add a node in outputmanager
int outfileopen(const std::string &fname)
opens output file
int RemoveNode(const std::string &nodename)
removes a node from outputmanager