Class Reference for E1039 Core & Analysis Software
SRMakeRTCurve.h
Go to the documentation of this file.
1 #ifndef _SR_MAKE_RT_CURVE_H_
2 #define _SR_MAKE_RT_CURVE_H_
3 #include <fstream>
4 #include <fun4all/SubsysReco.h>
5 class TFile;
6 class TH1;
7 class SQEvent;
8 class SQHitVector;
9 class TrackletVector;
10 class CalibParam;
11 class CalibData;
12 
13 class SRMakeRTCurve: public SubsysReco {
14  typedef enum {
15  ST_ID_D0 = 1,
16  ST_ID_D2 = 3,
17  ST_ID_D3P = 4,
18  ST_ID_D3M = 5,
19  ST_ID_D23 = 6
20  } StationID_t;
21  static const int N_RT_PT = 9; // N of points of R-T curve.
22  int m_iter;
23  std::string m_dir_name_out;
24 
25  CalibParam cal_par;
26  CalibData cal_dat;
27 
28  unsigned int m_n_evt_all;
29  unsigned int m_n_evt_ana;
30  unsigned int m_n_trk_all;
31  unsigned int m_n_trk_ana;
32 
33  SQEvent* m_evt;
34  SQHitVector* m_hit_vec;
35  TrackletVector* m_trklet_vec;
36 
37  public:
38  SRMakeRTCurve(const int iter, const std::string& name="SRMakeRTCurve");
39  virtual ~SRMakeRTCurve() {;}
40  int Init(PHCompositeNode *topNode);
41  int InitRun(PHCompositeNode *topNode);
42  int process_event(PHCompositeNode *topNode);
43  int End(PHCompositeNode *topNode);
44 
45  protected:
46  int AnaForOneStation(TrackletVector* trklet_vec, const int st_id, const int n_trklet);
47  void GetGoodTrackletRange(const int st_id, double& x_lo, double& x_hi, double& y_lo, double& y_hi, double& tx_lo, double& tx_hi, double& ty_lo, double& ty_hi);
48  bool InAcceptance(const Tracklet* trk);
49  int FindBestTracklet(TrackletVector* trklet_vec, const int st_id_tgt);
50 
51  void DrawHistEvent();
52  void DrawHistHit();
53  void ExtractRT();
54  void WriteRT();
55  void DrawCalibResult();
56 };
57 
58 #endif // _SR_MAKE_RT_CURVE_H_
Class to hold calibration data.
Definition: CalibData.h:12
Class to hold the calibration parameters.
Definition: CalibParam.h:8
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
int AnaForOneStation(TrackletVector *trklet_vec, const int st_id, const int n_trklet)
void GetGoodTrackletRange(const int st_id, double &x_lo, double &x_hi, double &y_lo, double &y_hi, double &tx_lo, double &tx_hi, double &ty_lo, double &ty_hi)
bool InAcceptance(const Tracklet *trk)
int Init(PHCompositeNode *topNode)
void DrawCalibResult()
int FindBestTracklet(TrackletVector *trklet_vec, const int st_id_tgt)
virtual ~SRMakeRTCurve()
Definition: SRMakeRTCurve.h:39
int process_event(PHCompositeNode *topNode)
void DrawHistEvent()
SRMakeRTCurve(const int iter, const std::string &name="SRMakeRTCurve")
int InitRun(PHCompositeNode *topNode)
int End(PHCompositeNode *topNode)
Called at the end of all processing.