Class Reference for E1039 Core & Analysis Software
SubsysReco.h
Go to the documentation of this file.
1 #ifndef __SUBSYSRECO_H__
2 #define __SUBSYSRECO_H__
3 
4 #include "Fun4AllBase.h"
5 #include <string>
6 
7 class PHCompositeNode;
8 
20 class SubsysReco: public Fun4AllBase
21 {
22  public:
23 
24 
28  virtual ~SubsysReco() {}
29 
31  virtual int End(PHCompositeNode */*topNode*/) {return 0;}
32 
34  virtual int EndRun(const int /*runnumber*/) {return 0;}
35 
41  virtual int Init(PHCompositeNode */*topNode*/) {return 0;}
42 
47  virtual int InitRun(PHCompositeNode */*topNode*/) {return 0;}
48 
52  virtual int process_event(PHCompositeNode */*topNode*/) {return 0;}
53 
55  virtual int Reset(PHCompositeNode */*topNode*/) {return 0;}
56 
58  virtual int ResetEvent(PHCompositeNode */*topNode*/) {return 0;}
59 
60  virtual void Print(const std::string &what = "ALL") const {}
61 
62  protected:
63 
67  SubsysReco(const std::string &name = "NONAME") : Fun4AllBase(name) {}
68 };
69 
70 #endif /* __SUBSYSRECO_H__ */
71 
virtual int process_event(PHCompositeNode *)
Definition: SubsysReco.h:52
virtual int EndRun(const int)
Called at the end of each run.
Definition: SubsysReco.h:34
virtual ~SubsysReco()
Definition: SubsysReco.h:28
virtual int Init(PHCompositeNode *)
Definition: SubsysReco.h:41
virtual void Print(const std::string &what="ALL") const
Definition: SubsysReco.h:60
virtual int End(PHCompositeNode *)
Called at the end of all processing.
Definition: SubsysReco.h:31
virtual int Reset(PHCompositeNode *)
Reset.
Definition: SubsysReco.h:55
SubsysReco(const std::string &name="NONAME")
Definition: SubsysReco.h:67
virtual int ResetEvent(PHCompositeNode *)
Clean up after each event.
Definition: SubsysReco.h:58
virtual int InitRun(PHCompositeNode *)
Definition: SubsysReco.h:47