Class Reference for E1039 Core & Analysis Software
CalibHodoInTime.h
Go to the documentation of this file.
1 #ifndef __CALIB_HODO_IN_TIME_H__
2 #define __CALIB_HODO_IN_TIME_H__
3 #include <fun4all/SubsysReco.h>
4 class SQHitVector;
7 
9 
19 class CalibHodoInTime: public SubsysReco {
20  bool m_skip_calib;
21  bool m_delete_out_time_hit;
22  SQHitVector* m_vec_hit;
23  SQHitVector* m_vec_trhit;
24  CalibParamInTimeTaiwan* m_cal_taiwan;
25  CalibParamInTimeV1495 * m_cal_v1495;
26 
27  public:
28  CalibHodoInTime(const std::string &name = "CalibHodoInTime");
29  virtual ~CalibHodoInTime();
30  int Init(PHCompositeNode *topNode);
31  int InitRun(PHCompositeNode *topNode);
32  int process_event(PHCompositeNode *topNode);
33  int End(PHCompositeNode *topNode);
34 
36  void SkipCalibration() { m_skip_calib = true; }
38  void DeleteOutTimeHit() { m_delete_out_time_hit = true; }
39 };
40 
41 #endif // __CALIB_HODO_IN_TIME_H__
SubsysReco module to calibrate the in-time window of the hodoscope.
int Init(PHCompositeNode *topNode)
virtual ~CalibHodoInTime()
void SkipCalibration()
Have this module skip the calibration. Useful when you only delete out-of-time hits.
int process_event(PHCompositeNode *topNode)
void DeleteOutTimeHit()
Have this module delete out-of-time hits.
int InitRun(PHCompositeNode *topNode)
int End(PHCompositeNode *topNode)
Called at the end of all processing.
CalibHodoInTime(const std::string &name="CalibHodoInTime")
An SQ interface class to hold a list of SQHit objects.
Definition: SQHitVector.h:32