Class Reference for E1039 Core & Analysis Software
SQChamberRealization.h
Go to the documentation of this file.
1 #ifndef SQChamberRealization_H
2 #define SQChamberRealization_H
3 #include <GlobalConsts.h>
4 #include <fun4all/SubsysReco.h>
5 class CalibParamXT;
6 class SQRun;
7 class SQHitVector;
8 
10 
21 {
22 public:
23  SQChamberRealization(const std::string& name = "SQChamberRealization");
24  virtual ~SQChamberRealization();
25 
26  int Init(PHCompositeNode* topNode);
27  int InitRun(PHCompositeNode* topNode);
28  int process_event(PHCompositeNode* topNode);
29  int End(PHCompositeNode* topNode);
30 
32  void SetChamEff(const double eff_d0, const double eff_d1, const double eff_d2, const double eff_d3p, const double eff_d3m);
33 
35  void SetPropTubeEff(const double eff_p1x, const double eff_p1y, const double eff_p2x, const double eff_p2y);
36 
38  void ScaleChamReso(const double scale_d0, const double scale_d1, const double scale_d2, const double scale_d3p, const double scale_d3m);
39 
41  void FixChamReso(const double reso_d0, const double reso_d1, const double reso_d2, const double reso_d3p, const double reso_d3m);
42 
43 private:
44  struct PlaneParam {
45  bool on;
46  double eff;
47  double reso_scale;
48  double reso_fixed;
49  PlaneParam() : on(false), eff(1.0), reso_scale(1.0), reso_fixed(-1) {;}
50  };
51  PlaneParam list_param[nChamberPlanes+nHodoPlanes+nPropPlanes+1];
52 
53  CalibParamXT* m_cal_xt;
54 
55  SQRun* m_run;
56  SQHitVector* m_hit_vec;
57 };
58 
59 #endif
#define nPropPlanes
Definition: GlobalConsts.h:8
#define nChamberPlanes
Definition: GlobalConsts.h:6
#define nHodoPlanes
Definition: GlobalConsts.h:7
Calibration parameter for chamber X-T relation.
Definition: CalibParamXT.h:13
SubsysReco module to do the detector realization for chamber and prop tube.
int Init(PHCompositeNode *topNode)
int InitRun(PHCompositeNode *topNode)
void SetPropTubeEff(const double eff_p1x, const double eff_p1y, const double eff_p2x, const double eff_p2y)
Set the single-plane efficiency of the prop-tube planes.
void ScaleChamReso(const double scale_d0, const double scale_d1, const double scale_d2, const double scale_d3p, const double scale_d3m)
Set the scaling factor of the single-plane resolution of the chamber planes.
int process_event(PHCompositeNode *topNode)
int End(PHCompositeNode *topNode)
Called at the end of all processing.
SQChamberRealization(const std::string &name="SQChamberRealization")
void FixChamReso(const double reso_d0, const double reso_d1, const double reso_d2, const double reso_d3p, const double reso_d3m)
Set the single-plane resolution of the chamber planes to the given values.
void SetChamEff(const double eff_d0, const double eff_d1, const double eff_d2, const double eff_d3p, const double eff_d3m)
Set the single-plane efficiency of the chamber planes.
An SQ interface class to hold a list of SQHit objects.
Definition: SQHitVector.h:32
An SQ interface class to hold the run-level info.
Definition: SQRun.h:18