Class Reference for E1039 Core & Analysis Software
CalibDriftDist.cc
Go to the documentation of this file.
1 #include <iomanip>
2 #include <TGraphErrors.h>
4 #include <interface_main/SQRun.h>
7 #include <phool/recoConsts.h>
8 #include <phool/PHNodeIterator.h>
9 #include <phool/PHIODataNode.h>
10 #include <phool/getClass.h>
11 #include <geom_svc/GeomSvc.h>
12 #include <geom_svc/CalibParamXT.h>
13 #include "CalibDriftDist.h"
14 using namespace std;
15 
16 CalibDriftDist::CalibDriftDist(const std::string& name)
17  : SubsysReco(name)
18  , m_skip_calib(false)
19  , m_delete_out_time_hit(false)
20  , m_manual_map_selection(false)
21  , m_fn_xt("")
22  , m_vec_hit(0)
23  , m_cal_xt (0)
24  , m_reso_d0 (0)
25  , m_reso_d1 (0)
26  , m_reso_d2 (0)
27  , m_reso_d3p(0)
28  , m_reso_d3m(0)
29 {
30  ;
31 }
32 
34 {
35  if (m_cal_xt ) delete m_cal_xt ;
36 }
37 
39 {
40  if (! m_skip_calib && m_manual_map_selection) {
41  m_cal_xt = new CalibParamXT();
42  m_cal_xt->SetMapID(m_fn_xt);
43  m_cal_xt->ReadFromLocalFile(m_fn_xt);
44  }
46 }
47 
49 {
50  //SQRun* run_header = findNode::getClass<SQRun>(topNode, "SQRun");
51  //if (!run_header) return Fun4AllReturnCodes::ABORTEVENT;
52  m_vec_hit = findNode::getClass<SQHitVector>(topNode, "SQHitVector");
53  if (!m_vec_hit) return Fun4AllReturnCodes::ABORTEVENT;
54 
55  if (m_skip_calib) {
56  if (Verbosity() > 0) cout << Name() << ": Skip the calibration." << endl;
57  } else {
59 
60  if (! m_manual_map_selection) {
61  int run_id = rc->get_IntFlag("RUNNUMBER");
62  m_cal_xt = new CalibParamXT();
63  m_cal_xt->SetMapIDbyDB(run_id); // (run_header->get_run_id());
64  m_cal_xt->ReadFromDB();
65  }
66 
67  SQParamDeco* param_deco = findNode::getClass<SQParamDeco>(topNode, "SQParamDeco");
68  if (param_deco) {
69  param_deco->set_variable(m_cal_xt->GetParamID(), m_cal_xt->GetMapID());
70  }
71 
72  rc->set_CharFlag(m_cal_xt->GetParamID(), m_cal_xt->GetMapID());
73  if (Verbosity() > 0) {
74  cout << Name() << ": " << m_cal_xt->GetParamID() << " = " << m_cal_xt->GetMapID() << "\n";
75  }
76 
77  if (m_reso_d0 > 0) {
78  if (Verbosity() > 0) cout << Name() << ": Set the plane resolution.\n";
79  GeomSvc* geom = GeomSvc::instance();
80  for (int ii = 1; ii <= nChamberPlanes; ii++) {
81  Plane* plane = geom->getPlanePtr(ii);
82  string name = plane->detectorName;
83  double reso = -1;
84  if (name.substr(0, 2) == "D0" ) reso = m_reso_d0;
85  else if (name.substr(0, 2) == "D1" ) reso = m_reso_d1;
86  else if (name.substr(0, 2) == "D2" ) reso = m_reso_d2;
87  else if (name.substr(0, 3) == "D3p") reso = m_reso_d3p;
88  else if (name.substr(0, 3) == "D3m") reso = m_reso_d3m;
89  if (reso > 0) {
90  plane->resolution = reso;
91  if (Verbosity() > 0) cout << " " << setw(2) << ii << ":" << setw(5) << name << " = " << reso << endl;
92  }
93  }
94  }
95  }
96 
98 }
99 
101 {
102  map<int, int> list_n_hit_in;
103  map<int, int> list_n_hit_out;
104 
105  GeomSvc* geom = GeomSvc::instance();
106  for (SQHitVector::Iter it = m_vec_hit->begin(); it != m_vec_hit->end(); ) {
107  SQHit* hit = *it;
108  int det = hit->get_detector_id();
109  if (!geom->isChamber(det) && !geom->isPropTube(det)) {
110  it++;
111  continue;
112  }
113 
114  if (! m_skip_calib) {
115  CalibParamXT::Set* xt = m_cal_xt->GetParam(det);
116  if (! det) {
117  cerr << " WARNING: Cannot find the in-time parameter for det=" << det << " in CalibDriftDist.\n";
118  it++;
119  continue; // return Fun4AllReturnCodes::ABORTEVENT;
120  }
121  float tdc_time = hit->get_tdc_time();
122  float drift_dist = xt->t2x.Eval(tdc_time);
123  if (drift_dist < 0) drift_dist = 0;
124  hit->set_drift_distance(drift_dist);
125  hit->set_in_time( xt->T1 <= tdc_time && tdc_time <= xt->T0 );
127 
128  int ele = hit->get_element_id();
129  hit->set_pos(geom->getMeasurement(det, ele));
130  }
131  if (m_delete_out_time_hit) {
132  if (! hit->is_in_time()) {
133  it = m_vec_hit->erase(it);
134  } else {
135  it++;
136  if (Verbosity() > 1) list_n_hit_out[det]++;
137  }
138  if (Verbosity() > 1) list_n_hit_in[det]++;
139  } else {
140  it++;
141  }
142  }
143  if (Verbosity() > 1 && m_delete_out_time_hit) {
144  cout << Name() << ": ";
145  for (auto it = list_n_hit_in.begin(); it != list_n_hit_in.end(); it++) {
146  cout << " " << it->first << ":" << it->second << "->" << list_n_hit_out[it->first];
147  }
148  cout << endl;
149  }
151 }
152 
154 {
156 }
157 
162 void CalibDriftDist::SetResolution(const double reso_d0, const double reso_d1, const double reso_d2, const double reso_d3p, const double reso_d3m)
163 {
164  m_reso_d0 = reso_d0 ;
165  m_reso_d1 = reso_d1 ;
166  m_reso_d2 = reso_d2 ;
167  m_reso_d3p = reso_d3p;
168  m_reso_d3m = reso_d3m;
169 }
170 
171 void CalibDriftDist::ReadParamFromFile(const char* fn_xt_curve)
172 {
173  m_manual_map_selection = true;
174  m_fn_xt = fn_xt_curve;
175 }
#define nChamberPlanes
Definition: GlobalConsts.h:6
int End(PHCompositeNode *topNode)
Called at the end of all processing.
virtual ~CalibDriftDist()
CalibDriftDist(const std::string &name="CalibDriftDist")
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
Set * GetParam(const short det)
Return a set of parameters for det. Return 0 if det is invalid.
virtual const std::string Name() const
Returns the name of this module.
Definition: Fun4AllBase.h:23
virtual int Verbosity() const
Gets the verbosity of this module.
Definition: Fun4AllBase.h:64
User interface class about the geometry of detector planes.
Definition: GeomSvc.h:164
bool isPropTube(const int detectorID) const
Return "true" for prop tube planes.
Definition: GeomSvc.cxx:792
static GeomSvc * instance()
singlton instance
Definition: GeomSvc.cxx:212
Plane * getPlanePtr(int detectorID)
Definition: GeomSvc.h:233
void getMeasurement(int detectorID, int elementID, double &measurement, double &dmeasurement)
Convert the detectorID and elementID to the actual hit position.
Definition: GeomSvc.cxx:651
bool isChamber(const int detectorID) const
Return "true" for chamber planes.
Definition: GeomSvc.cxx:772
virtual int get_IntFlag(const std::string &name) const
Definition: PHFlag.cc:117
Definition: GeomSvc.h:37
double resolution
Definition: GeomSvc.h:102
std::string detectorName
Definition: GeomSvc.h:65
std::string GetParamID()
Definition: RunParamBase.h:25
void SetMapID(const std::string map_id)
Definition: RunParamBase.h:28
void ReadFromDB()
void SetMapIDbyDB(const std::string map_id)
Definition: RunParamBase.cc:31
void ReadFromLocalFile(const std::string fn_tsv)
Definition: RunParamBase.cc:63
std::string GetMapID()
Definition: RunParamBase.h:27
virtual size_t erase(const size_t idkey)=0
virtual ConstIter end() const =0
virtual ConstIter begin() const =0
std::vector< SQHit * >::iterator Iter
Definition: SQHitVector.h:38
An SQ interface class to hold one detector hit.
Definition: SQHit.h:20
virtual bool is_in_time() const
Return 'true' if this hit is in the time window.
Definition: SQHit.h:90
virtual void set_pos(const float a)
Definition: SQHit.h:61
virtual short get_element_id() const
Return the element ID of this hit.
Definition: SQHit.h:45
virtual float get_tdc_time() const
Return the TDC time (nsec) of this hit.
Definition: SQHit.h:54
virtual void set_drift_distance(const float a)
Definition: SQHit.h:58
virtual short get_detector_id() const
Return the detector ID of this hit.
Definition: SQHit.h:42
virtual void set_in_time(const bool a)
Definition: SQHit.h:91
SQParamDeco.h.
Definition: SQParamDeco.h:16
virtual void set_variable(const std::string name, const std::string value)=0
static recoConsts * instance()
Definition: recoConsts.cc:7
virtual void set_CharFlag(const std::string &name, const std::string &flag)
overide the virtual function to expand the environmental variables
Definition: recoConsts.cc:21
A set of parameters for one detector (plane).
Definition: CalibParamXT.h:16
TGraphErrors t2x
Definition: CalibParamXT.h:21
double T1
T at X1.
Definition: CalibParamXT.h:20