Class Reference for E1039 Core & Analysis Software
MakeRTCurve.h
Go to the documentation of this file.
1 #ifndef _MAKE_RT_CURVE__H_
2 #define _MAKE_RT_CURVE__H_
3 #include <map>
4 #include <TVector3.h>
5 #include <TLorentzVector.h>
6 #include <fun4all/SubsysReco.h>
7 class CalibParam;
8 class CalibData;
9 
10 class MakeRTCurve {
11  typedef enum {
12  ST_ID_D3P = 4,
13  ST_ID_D3M = 5,
14  ST_ID_D23 = 6
15  } StationID_t;
16  static const int N_RT_PT = 9; // N of points of R-T curve.
17  int m_iter;
18  std::string m_dir_name_out;
19 
20  CalibParam cal_par;
21  CalibData cal_dat;
22 
23  unsigned int m_n_evt_all;
24  unsigned int m_n_evt_ana;
25  unsigned int m_n_trk_all;
26  unsigned int m_n_trk_ana;
27 
28  int m_verb;
29 
30  public:
31  MakeRTCurve(const int iter);
32  virtual ~MakeRTCurve();
33 
34  void Init();
35  void AnalyzeListOfFiles(const char* fn_list);
36  void AnalyzeFile(const char* fname);
37 
38  void DrawHistEvent();
39  void DrawHistHit();
40  void ExtractRT();
41  void WriteRT();
42  void DrawCalibResult();
43 
44  void Verbosity(const int verb) { m_verb = verb; }
45  int Verbosity() const { return m_verb; }
46 
47  private:
48  void EvalD2XY(const Tracklet* trk, double& x, double& y);
49  void EvalD3XY(const Tracklet* trk, double& x, double& y);
50 };
51 
52 #endif // _MAKE_RT_CURVE__H_
Class to hold calibration data.
Definition: CalibData.h:12
Class to hold the calibration parameters.
Definition: CalibParam.h:8
void DrawHistHit()
Definition: MakeRTCurve.cc:192
int Verbosity() const
Definition: MakeRTCurve.h:45
void Init()
Definition: MakeRTCurve.cc:46
void Verbosity(const int verb)
Definition: MakeRTCurve.h:44
MakeRTCurve(const int iter)
Definition: MakeRTCurve.cc:23
void AnalyzeFile(const char *fname)
Definition: MakeRTCurve.cc:78
void ExtractRT()
Definition: MakeRTCurve.cc:197
void DrawHistEvent()
Definition: MakeRTCurve.cc:180
void DrawCalibResult()
Definition: MakeRTCurve.cc:225
void AnalyzeListOfFiles(const char *fn_list)
Definition: MakeRTCurve.cc:70
virtual ~MakeRTCurve()
Definition: MakeRTCurve.cc:41
void WriteRT()
Definition: MakeRTCurve.cc:219