Class Reference for E1039 Core & Analysis Software
AnaChamHit.h
Go to the documentation of this file.
1 #ifndef _ANA_CHAM_HIT__H_
2 #define _ANA_CHAM_HIT__H_
3 #include <fun4all/SubsysReco.h>
4 #include "TreeData.h"
5 class TFile;
6 class TTree;
7 class TChain;
8 class SQEvent;
9 class SQHitVector;
10 
12 class AnaChamHit: public SubsysReco {
13  SQEvent* m_sq_evt;
14  SQHitVector* m_sq_hit_vec;
15 
16  std::string m_file_name;
17  TFile* m_file;
18  TTree* m_tree;
19  EventData m_evt;
20  HitList m_hit_list;
21 
22  public:
23  AnaChamHit(const std::string& name="AnaChamHit");
24  virtual ~AnaChamHit();
25  int Init(PHCompositeNode *topNode);
26  int InitRun(PHCompositeNode *topNode);
27  int process_event(PHCompositeNode *topNode);
28  int End(PHCompositeNode *topNode);
29  void SetOutputFileName(const std::string name) { m_file_name = name; }
30 
31  static void AnalyzeTree(TChain* tree);
32 };
33 
34 #endif // _ANA_CHAM_HIT__H_
std::vector< HitData > HitList
Definition: TreeData.h:34
An example class to analyze hodoscope hits in E1039 DST file.
Definition: AnaChamHit.h:12
int InitRun(PHCompositeNode *topNode)
Definition: AnaChamHit.cc:42
int End(PHCompositeNode *topNode)
Called at the end of all processing.
Definition: AnaChamHit.cc:93
int Init(PHCompositeNode *topNode)
Definition: AnaChamHit.cc:37
void SetOutputFileName(const std::string name)
Definition: AnaChamHit.h:29
int process_event(PHCompositeNode *topNode)
Definition: AnaChamHit.cc:56
AnaChamHit(const std::string &name="AnaChamHit")
Definition: AnaChamHit.cc:21
virtual ~AnaChamHit()
Definition: AnaChamHit.cc:32
static void AnalyzeTree(TChain *tree)
Definition: AnaChamHit.cc:101
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