Class Reference for E1039 Core & Analysis Software
CalibDriftDist.h
Go to the documentation of this file.
1 #ifndef __CALIB_DRIFT_DIST_H__
2 #define __CALIB_DRIFT_DIST_H__
3 #include <fun4all/SubsysReco.h>
4 class SQHitVector;
5 class CalibParamXT;
6 
8 
20 class CalibDriftDist: public SubsysReco {
21  bool m_skip_calib;
22  bool m_delete_out_time_hit;
23  bool m_manual_map_selection;
24  std::string m_fn_xt;
25  SQHitVector* m_vec_hit;
26  CalibParamXT* m_cal_xt;
27 
28  double m_reso_d0;
29  double m_reso_d1;
30  double m_reso_d2;
31  double m_reso_d3p;
32  double m_reso_d3m;
33 
34  public:
35  CalibDriftDist(const std::string &name = "CalibDriftDist");
36  virtual ~CalibDriftDist();
37  int Init(PHCompositeNode *topNode);
38  int InitRun(PHCompositeNode *topNode);
39  int process_event(PHCompositeNode *topNode);
40  int End(PHCompositeNode *topNode);
41 
43  void SkipCalibration() { m_skip_calib = true; }
45  void DeleteOutTimeHit() { m_delete_out_time_hit = true; }
47  void SetResolution(const double reso_d0, const double reso_d1, const double reso_d2, const double reso_d3p, const double reso_d3m);
48  void ReadParamFromFile(const char* fn_xt_curve);
49  CalibParamXT* GetParamXT() { return m_cal_xt; }
50 };
51 
52 #endif // __CALIB_DRIFT_DIST_H__
SubsysReco module to calibrate the drift distance and also the in-time window of the chambers and the...
int End(PHCompositeNode *topNode)
Called at the end of all processing.
void DeleteOutTimeHit()
Have this module delete out-of-time hits.
virtual ~CalibDriftDist()
void SkipCalibration()
Have this module skip the calibration. Useful when you only delete out-of-time hits.
CalibDriftDist(const std::string &name="CalibDriftDist")
CalibParamXT * GetParamXT()
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 InitRun(PHCompositeNode *topNode)
int process_event(PHCompositeNode *topNode)
int Init(PHCompositeNode *topNode)
void ReadParamFromFile(const char *fn_xt_curve)
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