Class Reference for E1039 Core & Analysis Software
SubsysRecoBG.h
Go to the documentation of this file.
1 #ifndef _SUBSYS_RECO_BG__H_
2 #define _SUBSYS_RECO_BG__H_
3 #include <vector>
4 #include <fun4all/SubsysReco.h>
5 #include "TreeData.h"
6 class TFile;
7 class TTree;
8 class SQEvent;
9 class SQMCEvent;
10 class SQHitVector;
11 
12 class SubsysRecoBG: public SubsysReco {
13  typedef enum { DEFAULT, FULL_BG } Mode_t;
14  Mode_t m_mode;
15 
17  SQEvent* mi_evt;
18  SQMCEvent* mi_mc_evt;
19  SQHitVector* mi_vec_hit;
20 
22  TFile* mo_file;
23  TTree* mo_tree;
24  BgData mo_bg;
25 
26  public:
27  SubsysRecoBG(const std::string &name="SubsysRecoBG");
28  virtual ~SubsysRecoBG() {;}
29  int Init(PHCompositeNode *topNode);
30  int InitRun(PHCompositeNode *topNode);
31  int process_event(PHCompositeNode *topNode);
32  int End(PHCompositeNode *topNode);
33 
34  void FullBgMode() { m_mode = FULL_BG; }
35 
36  protected:
37  void ExtractHits(const SQHitVector* hit_vec, const std::string det_name, std::vector<int>& list_ele);
38 };
39 
40 #endif // _SUBSYS_RECO_BG__H_
An SQ interface class to hold one event header.
Definition: SQEvent.h:17
An SQ interface class to hold a list of SQHit objects.
Definition: SQHitVector.h:32
An SQ interface class to hold one simulated-event header.
Definition: SQMCEvent.h:12
int Init(PHCompositeNode *topNode)
Definition: SubsysRecoBG.cc:27
void FullBgMode()
Definition: SubsysRecoBG.h:34
int End(PHCompositeNode *topNode)
Called at the end of all processing.
Definition: SubsysRecoBG.cc:80
int InitRun(PHCompositeNode *topNode)
Definition: SubsysRecoBG.cc:32
void ExtractHits(const SQHitVector *hit_vec, const std::string det_name, std::vector< int > &list_ele)
Definition: SubsysRecoBG.cc:88
int process_event(PHCompositeNode *topNode)
Definition: SubsysRecoBG.cc:50
SubsysRecoBG(const std::string &name="SubsysRecoBG")
Definition: SubsysRecoBG.cc:15
virtual ~SubsysRecoBG()
Definition: SubsysRecoBG.h:28