Class Reference for E1039 Core & Analysis Software
Fun4AllOutputManager.h
Go to the documentation of this file.
1 #ifndef FUN4ALLOUTPUTMANAGER_H__
2 #define FUN4ALLOUTPUTMANAGER_H__
3 
4 #include "Fun4AllBase.h"
5 
6 #include <vector>
7 #include <string>
8 
9 class PHCompositeNode;
10 
12 {
13  public:
14 
17  {}
18 
20  virtual void Print(const std::string &what = "ALL") const;
21 
23  virtual int AddNode(const std::string& /*nodename*/)
24  { return 0; }
25 
27  virtual int StripNode(const std::string& /*nodename*/)
28  { return 0; }
29 
35  virtual int AddEventSelector(const std::string &recomodule);
36 
38  virtual int outfileopen(const std::string& /*nodename*/)
39  { return 0; }
40 
42  virtual int RemoveNode(const std::string& /*nodename*/)
43  { return 0; }
44 
46  int WriteGeneric(PHCompositeNode *startNode);
47 
49  virtual int Write(PHCompositeNode* /*startNode*/)
50  { return 0; }
51 
53  virtual int WriteNode(PHCompositeNode* /*thisNode*/)
54  { return 0; }
55 
57  virtual std::vector <std::string> *EventSelector()
58  {return &EventSelectors;}
59 
61  virtual std::vector <unsigned> *RecoModuleIndex()
62  {return &recomoduleindex;}
63 
65  virtual int DoNotWriteEvent(std::vector <int> *retcodes) const;
66 
68  virtual size_t EventsWritten() const {return nEvents;}
69 
71  virtual std::string OutFileName() const {return outfilename;}
72 
73  protected:
74 
79  Fun4AllOutputManager(const std::string &myname );
80 
82  size_t nEvents;
83 
85  std::vector <std::string> EventSelectors;
86 
88  std::vector <unsigned> recomoduleindex;
89 
91  std::string outfilename;
92 };
93 
94 #endif /* __FUN4ALLOUTPUTMANAGER_H__ */
virtual int DoNotWriteEvent(std::vector< int > *retcodes) const
decides if event is to be written or not
std::vector< unsigned > recomoduleindex
vector of associated module indexes
virtual int AddEventSelector(const std::string &recomodule)
add an event selector to the outputmanager. event will get written only if all event selectors proces...
virtual std::vector< std::string > * EventSelector()
retrieves pointer to vector of event selector module names
int WriteGeneric(PHCompositeNode *startNode)
Common method, called before calling virtual Write.
virtual std::vector< unsigned > * RecoModuleIndex()
retrieves pointer to vector of event selector module ids
virtual int RemoveNode(const std::string &)
removes a node from outputmanager
virtual int AddNode(const std::string &)
add a node in outputmanager
virtual size_t EventsWritten() const
get number of Events
virtual int WriteNode(PHCompositeNode *)
write specified node
virtual void Print(const std::string &what="ALL") const
print method (dump event selector)
virtual int StripNode(const std::string &)
not write a node in outputmanager
Fun4AllOutputManager(const std::string &myname)
virtual int outfileopen(const std::string &)
opens output file
std::string outfilename
output file name
virtual ~Fun4AllOutputManager()
destructor
virtual std::string OutFileName() const
get output file name
size_t nEvents
Number of Events.
virtual int Write(PHCompositeNode *)
write starting from given node
std::vector< std::string > EventSelectors
vector of event selectors modules