Class Reference for E1039 Core & Analysis Software
MakeMyTree.h
Go to the documentation of this file.
1 #ifndef _MAKE_MY_TREE__H_
2 #define _MAKE_MY_TREE__H_
3 #include <fun4all/SubsysReco.h>
6 class TFile;
7 class TTree;
8 class SQEvent;
9 class SQSpillMap;
10 class SQHitVector;
11 class SRecEvent;
12 class SQMCEvent;
13 class SQTrackVector;
14 class SQDimuonVector;
15 class SRawEvent;
16 typedef std::vector<SQTrack_v1> SQTrackVec;
17 typedef std::vector<SQDimuon_v1> SQDimuonVec;
18 
20 
24 class MakeMyTree: public SubsysReco {
25  std::string m_file_name;
26  std::string m_tree_name;
27 
29  SQEvent * m_evt;
30  SQSpillMap * m_sp_map;
31  SQHitVector * m_hit_vec;
32  SQHitVector * m_trig_hit_vec;
33  SRecEvent * m_srec;
34  SQMCEvent * m_evt_true;
35  SQTrackVector * m_vec_trk;
36  SQDimuonVector* m_vec_dim;
37 
39  TFile* m_file;
40  TTree* m_tree;
41  SRawEvent* m_sraw;
42  SQTrackVec m_vec_trk_true;
43  SQDimuonVec m_vec_dim_true;
44 
45  public:
46  MakeMyTree();
47  virtual ~MakeMyTree() {;}
48  int Init(PHCompositeNode *topNode);
49  int InitRun(PHCompositeNode *topNode);
50  int process_event(PHCompositeNode *topNode);
51  int End(PHCompositeNode *topNode);
52 
53  void SetFileName(const std::string name) { m_file_name = name; }
54  void SetTreeName(const std::string name) { m_tree_name = name; }
55 };
56 
57 #endif /* _MAKE_MY_TREE__H_ */
std::vector< SQTrack_v1 > SQTrackVec
Definition: MakeMyTree.h:15
std::vector< SQDimuon_v1 > SQDimuonVec
Definition: MakeMyTree.h:17
An example class to output a tree file in your own data structure.
Definition: MakeMyTree.h:24
virtual ~MakeMyTree()
Definition: MakeMyTree.h:47
int InitRun(PHCompositeNode *topNode)
Definition: MakeMyTree.cc:42
void SetFileName(const std::string name)
Definition: MakeMyTree.h:53
void SetTreeName(const std::string name)
Definition: MakeMyTree.h:54
int End(PHCompositeNode *topNode)
Called at the end of all processing.
Definition: MakeMyTree.cc:107
int process_event(PHCompositeNode *topNode)
Definition: MakeMyTree.cc:70
int Init(PHCompositeNode *topNode)
Definition: MakeMyTree.cc:37
An SQ interface class to hold a list of SQDimuon objects.
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
An SQ interface class to hold a list of SQSpill objects.
Definition: SQSpillMap.h:19
An SQ interface class to hold a list of SQTrack objects.
Definition: SQTrackVector.h:19