Class Reference for E1039 Core & Analysis Software
AnaTrack.h
Go to the documentation of this file.
1 #ifndef _ANA_TRACK__H_
2 #define _ANA_TRACK__H_
3 #include <fun4all/SubsysReco.h>
4 #include "TreeData.h"
5 class TFile;
6 class TH2;
7 class TTree;
8 class TChain;
9 class SQEvent;
10 class SQHitVector;
11 class SQTrackVector;
12 
14 class AnaTrack: public SubsysReco {
15  SQEvent* m_sq_evt;
16  SQHitVector* m_sq_hit_vec;
17  SQTrackVector* m_sq_trk_vec;
18 
19  std::string m_file_name;
20  TFile* m_file;
21  TTree* m_tree;
22  EventData m_evt;
23  TrackList m_trk_list;
24 
25  public:
26  AnaTrack(const std::string& name="AnaTrack");
27  virtual ~AnaTrack();
28  int Init(PHCompositeNode *topNode);
29  int InitRun(PHCompositeNode *topNode);
31  int End(PHCompositeNode *topNode);
32  void SetOutputFileName(const std::string name) { m_file_name = name; }
33 
34  static void AnalyzeTree(TChain* tree);
35  static void DrawHistIn1D(TH2* h2, const std::string label, const std::string dir_out);
36 };
37 
38 #endif // _ANA_TRACK__H_
std::vector< TrackData > TrackList
Definition: TreeData.h:53
An example class to analyze hodoscope hits in E1039 DST file.
Definition: AnaTrack.h:14
AnaTrack(const std::string &name="AnaTrack")
int InitRun(PHCompositeNode *topNode)
int Init(PHCompositeNode *topNode)
static void AnalyzeTree(TChain *tree)
Definition: AnaTrack.cc:118
virtual ~AnaTrack()
static void DrawHistIn1D(TH2 *h2, const std::string label, const std::string dir_out)
Definition: AnaTrack.cc:251
void SetOutputFileName(const std::string name)
Definition: AnaTrack.h:32
int End(PHCompositeNode *topNode)
Called at the end of all processing.
int process_event(PHCompositeNode *topNode)
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 a list of SQTrack objects.
Definition: SQTrackVector.h:19