Class Reference for E1039 Core & Analysis Software
CalibDriftDistMod.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 "CalibDriftDistMod.h"
14 using namespace std;
15 
16 CalibDriftDistMod::CalibDriftDistMod(const std::string& name)
17  : SubsysReco(name)
18  , m_manual_map_selection(false)
19  , m_fn_xt("")
20  , m_vec_hit(0)
21  , m_cal_xt (0)
22  , m_reso_d0 (0)
23  , m_reso_d1 (0)
24  , m_reso_d2 (0)
25  , m_reso_d3p(0)
26  , m_reso_d3m(0)
27 {
28  ;
29 }
30 
32 {
33  if (m_cal_xt ) delete m_cal_xt ;
34 }
35 
37 {
38  if (m_manual_map_selection) {
39  m_cal_xt = new CalibParamXT();
40  m_cal_xt->SetMapID(m_fn_xt);
41  m_cal_xt->ReadFromLocalFile(m_fn_xt);
42  }
44 }
45 
47 {
48  //SQRun* run_header = findNode::getClass<SQRun>(topNode, "SQRun");
49  //if (!run_header) return Fun4AllReturnCodes::ABORTEVENT;
50  m_vec_hit = findNode::getClass<SQHitVector>(topNode, "SQHitVector");
51  if (!m_vec_hit) return Fun4AllReturnCodes::ABORTEVENT;
52 
54 
55  if (! m_manual_map_selection) {
56  int run_id = rc->get_IntFlag("RUNNUMBER");
57  m_cal_xt = new CalibParamXT();
58  m_cal_xt->SetMapIDbyDB(run_id); // (run_header->get_run_id());
59  m_cal_xt->ReadFromDB();
60  }
61 
62  SQParamDeco* param_deco = findNode::getClass<SQParamDeco>(topNode, "SQParamDeco");
63  if (param_deco) {
64  param_deco->set_variable(m_cal_xt->GetParamID(), m_cal_xt->GetMapID());
65  }
66 
67  rc->set_CharFlag(m_cal_xt->GetParamID(), m_cal_xt->GetMapID());
68  if (Verbosity() > 0) {
69  cout << Name() << ": " << m_cal_xt->GetParamID() << " = " << m_cal_xt->GetMapID() << "\n";
70  }
71 
72  if (m_reso_d0 > 0) {
73  if (Verbosity() > 0) cout << "CalibDriftDistMod: Set the plane resolution.\n";
74  GeomSvc* geom = GeomSvc::instance();
75  for (int ii = 1; ii <= nChamberPlanes; ii++) {
76  Plane* plane = geom->getPlanePtr(ii);
77  string name = plane->detectorName;
78  double reso = -1;
79  if (name.substr(0, 2) == "D0" ) reso = m_reso_d0;
80  else if (name.substr(0, 2) == "D1" ) reso = m_reso_d1;
81  else if (name.substr(0, 2) == "D2" ) reso = m_reso_d2;
82  else if (name.substr(0, 3) == "D3p") reso = m_reso_d3p;
83  else if (name.substr(0, 3) == "D3m") reso = m_reso_d3m;
84  if (reso > 0) {
85  plane->resolution = reso;
86  if (Verbosity() > 0) cout << " " << setw(2) << ii << ":" << setw(5) << name << " = " << reso << endl;
87  }
88  }
89  }
90 
92 }
93 
95 {
96  GeomSvc* geom = GeomSvc::instance();
97  for (SQHitVector::Iter it = m_vec_hit->begin(); it != m_vec_hit->end(); it++) {
98  SQHit* hit = *it;
99  int det = hit->get_detector_id();
100  if (!geom->isChamber(det) && !geom->isPropTube(det)) continue;
101 
102  CalibParamXT::Set* xt = m_cal_xt->GetParam(det);
103  if (! det) {
104  cerr << " WARNING: Cannot find the in-time parameter for det=" << det << " in CalibDriftDistMod.\n";
105  continue;
106  //return Fun4AllReturnCodes::ABORTEVENT;
107  }
108  float tdc_time = hit->get_tdc_time();
109  float drift_dist = xt->t2x.Eval(tdc_time);
110  if (drift_dist < 0) drift_dist = 0;
111  hit->set_drift_distance(drift_dist);
112  hit->set_in_time(xt->T1 <= tdc_time && tdc_time <= xt->T0);
114 
115  int ele = hit->get_element_id();
116  hit->set_pos(geom->getMeasurement(det, ele));
117  }
119 }
120 
122 {
124 }
125 
130 void CalibDriftDistMod::SetResolution(const double reso_d0, const double reso_d1, const double reso_d2, const double reso_d3p, const double reso_d3m)
131 {
132  m_reso_d0 = reso_d0 ;
133  m_reso_d1 = reso_d1 ;
134  m_reso_d2 = reso_d2 ;
135  m_reso_d3p = reso_d3p;
136  m_reso_d3m = reso_d3m;
137 }
138 
139 void CalibDriftDistMod::ReadParamFromFile(const char* fn_xt_curve)
140 {
141  m_manual_map_selection = true;
142  m_fn_xt = fn_xt_curve;
143 }
#define nChamberPlanes
Definition: GlobalConsts.h:6
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)
int Init(PHCompositeNode *topNode)
void ReadParamFromFile(const char *fn_xt_curve)
virtual ~CalibDriftDistMod()
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 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 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