Class Reference for E1039 Core & Analysis Software
AnaDimuonLikeSign.h
Go to the documentation of this file.
1 #ifndef _ANA_DIMUON_LIKE_SIGN__H_
2 #define _ANA_DIMUON_LIKE_SIGN__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 SQTrackVector;
12 class SQDimuonVector;
13 
16  SQEvent* m_sq_evt;
17  SQHitVector* m_sq_hit_vec;
18  SQTrackVector* m_sq_trk_vec;
19  SQDimuonVector* m_sq_dim_vec;
20 
21  std::string m_node_prefix;
22  std::string m_label;
23  std::string m_file_name;
24  TFile* m_file;
25  TTree* m_tree;
26  EventData m_evt;
27  DimuonList m_dim_list;
28 
30 
31  public:
32  AnaDimuonLikeSign(const std::string& name="AnaDimuonLikeSign", const std::string& label="PP");
33  virtual ~AnaDimuonLikeSign();
34  int Init(PHCompositeNode *topNode);
35  int InitRun(PHCompositeNode *topNode);
36  int process_event(PHCompositeNode *topNode);
37  int End(PHCompositeNode *topNode);
38  void SetOutputFileName(const std::string name) { m_file_name = name; }
39 
40  void SetNodePrefix(const std::string name) { m_node_prefix = name; }
41  std::string GetNodePrefix() const { return m_node_prefix; }
42 
43  static void AnalyzeTree(TChain* tree, const std::string label);
44 };
45 
46 #endif // _ANA_DIMUON_LIKE_SIGN__H_
std::vector< DimuonData > DimuonList
Definition: TreeData.h:54
An example class to analyze hodoscope hits in E1039 DST file.
void SetOutputFileName(const std::string name)
static void AnalyzeTree(TChain *tree, const std::string label)
AnaDimuonLikeSign(const std::string &name="AnaDimuonLikeSign", const std::string &label="PP")
int InitRun(PHCompositeNode *topNode)
virtual ~AnaDimuonLikeSign()
int Init(PHCompositeNode *topNode)
int End(PHCompositeNode *topNode)
Called at the end of all processing.
std::string GetNodePrefix() const
int process_event(PHCompositeNode *topNode)
void SetNodePrefix(const std::string name)
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 a list of SQTrack objects.
Definition: SQTrackVector.h:19
Class to handle the trigger roadset.
Definition: TrigRoadset.h:34