Class Reference for E1039 Core & Analysis Software
CalibDriftDistMod.h
Go to the documentation of this file.
1 #ifndef __CALIB_DRIFT_DIST_MOD_H__
2 #define __CALIB_DRIFT_DIST_MOD_H__
3 #include <fun4all/SubsysReco.h>
4 class SQHitVector;
5 class CalibParamXT;
6 
8 
13  bool m_manual_map_selection;
14  std::string m_fn_xt;
15  SQHitVector* m_vec_hit;
16  CalibParamXT* m_cal_xt;
17 
18  double m_reso_d0;
19  double m_reso_d1;
20  double m_reso_d2;
21  double m_reso_d3p;
22  double m_reso_d3m;
23 
24  public:
25  CalibDriftDistMod(const std::string &name = "CalibDriftDistMod");
26  virtual ~CalibDriftDistMod();
27  int Init(PHCompositeNode *topNode);
28  int InitRun(PHCompositeNode *topNode);
29  int process_event(PHCompositeNode *topNode);
30  int End(PHCompositeNode *topNode);
31 
33  void SetResolution(const double reso_d0, const double reso_d1, const double reso_d2, const double reso_d3p, const double reso_d3m);
34 
35  void ReadParamFromFile(const char* fn_xt_curve);
36  CalibParamXT* GetParamXT() { return m_cal_xt; }
37 };
38 
39 #endif // __CALIB_DRIFT_DIST_MOD_H__
SubsysReco module to calibrate the drift distance and also the in-time window of the chambers and the...
CalibDriftDistMod(const std::string &name="CalibDriftDistMod")
void SetResolution(const double reso_d0, const double reso_d1, const double reso_d2, const double reso_d3p, const double reso_d3m)
Set the plane resolutions in cm.
int End(PHCompositeNode *topNode)
Called at the end of all processing.
int InitRun(PHCompositeNode *topNode)
int process_event(PHCompositeNode *topNode)
CalibParamXT * GetParamXT()
int Init(PHCompositeNode *topNode)
void ReadParamFromFile(const char *fn_xt_curve)
virtual ~CalibDriftDistMod()
Calibration parameter for chamber X-T relation.
Definition: CalibParamXT.h:13
An SQ interface class to hold a list of SQHit objects.
Definition: SQHitVector.h:32