Class Reference for E1039 Core & Analysis Software
AnaDimuon.h
Go to the documentation of this file.
1 #ifndef _ANA_DIMUON__H_
2 #define _ANA_DIMUON__H_
3 #include <fun4all/SubsysReco.h>
4 #include <UtilAna/TrigRoadset.h>
5 #include "TreeData.h"
6 class TFile;
7 class TTree;
8 class TChain;
9 class SQEvent;
10 class SQHitVector;
11 class SRecEvent;
12 
14 class AnaDimuon: public SubsysReco {
15  SQEvent* m_sq_evt;
16  SQHitVector* m_sq_hit_vec;
17  SRecEvent* m_srec;
18 
19  std::string m_file_name;
20  TFile* m_file;
21  TTree* m_tree;
22  EventData m_evt;
23  DimuonList m_dim_list;
24 
26 
27  public:
28  AnaDimuon(const std::string& name="AnaDimuon");
29  virtual ~AnaDimuon();
30  int Init(PHCompositeNode *topNode);
31  int InitRun(PHCompositeNode *topNode);
32  int process_event(PHCompositeNode *topNode);
33  int End(PHCompositeNode *topNode);
34  void SetOutputFileName(const std::string name) { m_file_name = name; }
35 
36  static void AnalyzeTree(TChain* tree);
37 };
38 
39 #endif // _ANA_DIMUON__H_
std::vector< DimuonData > DimuonList
Definition: TreeData.h:54
An example class to analyze hodoscope hits in E1039 DST file.
Definition: AnaDimuon.h:14
void SetOutputFileName(const std::string name)
Definition: AnaDimuon.h:34
AnaDimuon(const std::string &name="AnaDimuon")
Definition: AnaDimuon.cc:22
virtual ~AnaDimuon()
Definition: AnaDimuon.cc:34
int End(PHCompositeNode *topNode)
Called at the end of all processing.
Definition: AnaDimuon.cc:165
int InitRun(PHCompositeNode *topNode)
Definition: AnaDimuon.cc:44
static void AnalyzeTree(TChain *tree)
Definition: AnaDimuon.cc:173
int Init(PHCompositeNode *topNode)
Definition: AnaDimuon.cc:39
int process_event(PHCompositeNode *topNode)
Definition: AnaDimuon.cc:71
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
Class to handle the trigger roadset.
Definition: TrigRoadset.h:34