Class Reference for E1039 Core & Analysis Software
AnaChamPlane.h
Go to the documentation of this file.
1 #ifndef _ANA_CHAM_PLANE_H_
2 #define _ANA_CHAM_PLANE_H_
3 #include <fstream>
4 #include <fun4all/SubsysReco.h>
5 class TFile;
6 class TH1;
7 class SQEvent;
8 class SQHitVector;
9 
10 class AnaChamPlane: public SubsysReco {
11  std::string m_plane_name;
12  int m_plane_id;
13  int m_n_ele;
14  int m_n_evt_all;
15  int m_n_hit_all;
16 
17  SQEvent* m_evt;
18  SQHitVector* m_hit_vec;
19 
20  TFile* m_file_out;
21  TH1* m_h1_nhit;
22  TH1* m_h1_ele ;
23  TH1* m_h1_pos ;
24  TH1* m_h1_time;
25  TH1* m_h1_dist;
26 
27  public:
28  AnaChamPlane(const std::string& plane_name);
29  virtual ~AnaChamPlane() {;}
30  int Init(PHCompositeNode *topNode);
31  int InitRun(PHCompositeNode *topNode);
32  int process_event(PHCompositeNode *topNode);
33  int End(PHCompositeNode *topNode);
34 };
35 
36 #endif // _ANA_CHAM_PLANE_H_
int InitRun(PHCompositeNode *topNode)
Definition: AnaChamPlane.cc:43
int process_event(PHCompositeNode *topNode)
Definition: AnaChamPlane.cc:92
AnaChamPlane(const std::string &plane_name)
Definition: AnaChamPlane.cc:19
int End(PHCompositeNode *topNode)
Called at the end of all processing.
int Init(PHCompositeNode *topNode)
Definition: AnaChamPlane.cc:38
virtual ~AnaChamPlane()
Definition: AnaChamPlane.h:29
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