Class Reference for E1039 Core & Analysis Software
SQChamberRealization.cc
Go to the documentation of this file.
1 #include <iomanip>
2 #include <TRandom.h>
3 #include <TGraphErrors.h>
4 #include <interface_main/SQRun.h>
7 #include <phool/PHNodeIterator.h>
9 #include <phool/PHIODataNode.h>
10 #include <phool/getClass.h>
11 #include <phool/recoConsts.h>
12 #include <geom_svc/GeomSvc.h>
13 #include <geom_svc/CalibParamXT.h>
14 #include "SQChamberRealization.h"
15 using namespace std;
16 
18  : SubsysReco(name)
19  , m_cal_xt (0)
20  , m_run (0)
21  , m_hit_vec(0)
22 {
23  ;
24 }
25 
27 {
28  if (m_cal_xt ) delete m_cal_xt ;
29 }
30 
32 {
34 }
35 
37 {
38  //PHNodeIterator iter(topNode);
39  //m_run = findNode::getClass<SQRun>(topNode, "SQRun");
40  //if (!m_run) {
41  // cerr << Name() << ": SQRun node missing. Abort." << endl;
42  // return Fun4AllReturnCodes::ABORTRUN;
43  //}
44  m_hit_vec = findNode::getClass<SQHitVector>(topNode, "SQHitVector");
45  if (!m_hit_vec) {
46  cerr << Name() << ": SQHitVector node missing. Abort." << endl;
48  }
49 
51  int run_id = rc->get_IntFlag("RUNNUMBER");
52 
53  m_cal_xt = new CalibParamXT();
54  m_cal_xt->SetMapIDbyDB(run_id); // (m_run->get_run_id());
55  m_cal_xt->ReadFromDB();
56  rc->set_CharFlag("CHAM_REAL_XT", m_cal_xt->GetMapID());
57 
59 }
60 
62 {
63  if (Verbosity() >= 2) cout << "SQChamberRealization: n_hits=" << m_hit_vec->size() << endl;
64  SQHitVector::Iter it = m_hit_vec->begin();
65  while (it != m_hit_vec->end()) {
66  SQHit* hit = *it;
67  int det_id = hit->get_detector_id();
68  PlaneParam* param = &list_param[det_id];
69  if (! param->on) {
70  it++;
71  continue;
72  }
73 
74  int ele_id = hit->get_element_id();
75  bool is_eff = (gRandom->Rndm() < param->eff);
76  if (Verbosity() >= 2) {
77  string det_name = GeomSvc::instance()->getDetectorName(det_id);
78  cout << " Hit: det=" << det_id << ":" << det_name << " ele=" << ele_id << " is_eff=" << is_eff << endl;
79  }
80  if (! is_eff) {
81  it = m_hit_vec->erase(it);
82  continue;
83  }
84 
85  CalibParamXT::Set* xt = m_cal_xt->GetParam(det_id);
86  if (xt) {
87  double dist = hit->get_drift_distance();
88  int dist_sign = dist > 0 ? +1 : -1;
89  dist *= dist_sign; // Made positive.
90 
91  double dx;
92  if (param->reso_fixed >= 0) dx = param->reso_fixed;
93  else dx = xt->x2dx.Eval(dist);
94  if (param->reso_scale >= 0) dx *= param->reso_scale;
95  if (Verbosity() >= 2) cout << " dist=" << dist << " dx=" << dx << " X0=" << xt->X0 << " X1=" << xt->X1 << endl;
96 
97  double dist_new;
98  int n_try = 10000;
99  while (n_try > 0) {
100  dist_new = gRandom->Gaus(dist, dx);
101  if (xt->X0 <= dist_new && dist_new <= xt->X1) break;
102  n_try--;
103  }
104  if (n_try == 0) {
105  cout << PHWHERE << " Failed at generating an in-range drift time. Something unexpected. Abort." << endl;
106  exit(1);
107  }
108  hit->set_drift_distance(dist_new * dist_sign);
109  hit->set_tdc_time(xt->x2t.Eval(dist_new));
110  }
111  it++;
112  }
114 }
115 
117 {
119 }
120 
121 void SQChamberRealization::SetChamEff(const double eff_d0, const double eff_d1, const double eff_d2, const double eff_d3p, const double eff_d3m)
122 {
123  GeomSvc* geom = GeomSvc::instance();
124  if (Verbosity() > 0) cout << "SQChamberRealization::SetChamEff():\n";
125  for (int ii = 1; ii <= nChamberPlanes; ii++) {
126  string name = geom->getDetectorName(ii);
127  double eff = -1;
128  if (name.substr(0, 2) == "D0" ) eff = eff_d0;
129  else if (name.substr(0, 2) == "D1" ) eff = eff_d1;
130  else if (name.substr(0, 2) == "D2" ) eff = eff_d2;
131  else if (name.substr(0, 3) == "D3p") eff = eff_d3p;
132  else if (name.substr(0, 3) == "D3m") eff = eff_d3m;
133  if (eff >= 0) {
134  list_param[ii].on = true;
135  list_param[ii].eff = eff;
136  if (Verbosity() > 0) cout << " " << setw(2) << ii << ":" << setw(5) << name << " = " << eff << endl;
137  }
138  }
139 }
140 
141 void SQChamberRealization::SetPropTubeEff(const double eff_p1x, const double eff_p1y, const double eff_p2x, const double eff_p2y)
142 {
143  GeomSvc* geom = GeomSvc::instance();
144  if (Verbosity() > 0) cout << "SQChamberRealization::SetProTubeEff():\n";
145  for (int ii = nChamberPlanes+nHodoPlanes + 1; ii <= nChamberPlanes+nHodoPlanes+nPropPlanes; ii++) {
146  string name = geom->getDetectorName(ii);
147  double eff = -1;
148  if (name.substr(0, 3) == "P1X") eff = eff_p1x;
149  else if (name.substr(0, 3) == "P1Y") eff = eff_p1y;
150  else if (name.substr(0, 3) == "P2X") eff = eff_p2x;
151  else if (name.substr(0, 3) == "P2Y") eff = eff_p2y;
152  if (eff >= 0) {
153  list_param[ii].on = true;
154  list_param[ii].eff = eff;
155  if (Verbosity() > 0) cout << " " << setw(2) << ii << ":" << setw(5) << name << " = " << eff << endl;
156  }
157  }
158 }
159 
160 void SQChamberRealization::ScaleChamReso(const double scale_d0, const double scale_d1, const double scale_d2, const double scale_d3p, const double scale_d3m)
161 {
162  GeomSvc* geom = GeomSvc::instance();
163  if (Verbosity() > 0) cout << "SQChamberRealization::ScaleChamReso():\n";
164  for (int ii = 1; ii <= nChamberPlanes; ii++) {
165  string name = geom->getDetectorName(ii);
166  double scale = -1;
167  if (name.substr(0, 2) == "D0" ) scale = scale_d0 ;
168  else if (name.substr(0, 2) == "D1" ) scale = scale_d1 ;
169  else if (name.substr(0, 2) == "D2" ) scale = scale_d2 ;
170  else if (name.substr(0, 3) == "D3p") scale = scale_d3p;
171  else if (name.substr(0, 3) == "D3m") scale = scale_d3m;
172  if (scale >= 0) {
173  list_param[ii].on = true;
174  list_param[ii].reso_scale = scale;
175  if (Verbosity() > 0) cout << " " << setw(2) << ii << ":" << setw(5) << name << " = " << scale << endl;
176  }
177  }
178 }
179 
180 void SQChamberRealization::FixChamReso(const double reso_d0, const double reso_d1, const double reso_d2, const double reso_d3p, const double reso_d3m)
181 {
182  GeomSvc* geom = GeomSvc::instance();
183  if (Verbosity() > 0) cout << "SQChamberRealization::FixChamReso():\n";
184  for (int ii = 1; ii <= nChamberPlanes; ii++) {
185  string name = geom->getDetectorName(ii);
186  double reso = -1;
187  if (name.substr(0, 2) == "D0" ) reso = reso_d0 ;
188  else if (name.substr(0, 2) == "D1" ) reso = reso_d1 ;
189  else if (name.substr(0, 2) == "D2" ) reso = reso_d2 ;
190  else if (name.substr(0, 3) == "D3p") reso = reso_d3p;
191  else if (name.substr(0, 3) == "D3m") reso = reso_d3m;
192  if (reso >= 0) {
193  list_param[ii].on = true;
194  list_param[ii].reso_fixed = reso;
195  if (Verbosity() > 0) cout << " " << setw(2) << ii << ":" << setw(5) << name << " = " << reso << endl;
196  }
197  }
198 }
#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
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
static GeomSvc * instance()
singlton instance
Definition: GeomSvc.cxx:212
std::string getDetectorName(const int &detectorID) const
Definition: GeomSvc.h:223
virtual int get_IntFlag(const std::string &name) const
Definition: PHFlag.cc:117
void ReadFromDB()
void SetMapIDbyDB(const std::string map_id)
Definition: RunParamBase.cc:31
std::string GetMapID()
Definition: RunParamBase.h:27
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.
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
virtual size_t size() const =0
An SQ interface class to hold one detector hit.
Definition: SQHit.h:20
virtual float get_drift_distance() const
Return the drift distance of this hit. Probably the value is not properly set at present....
Definition: SQHit.h:57
virtual void set_tdc_time(const float a)
Definition: SQHit.h:55
virtual short get_element_id() const
Return the element ID of this hit.
Definition: SQHit.h:45
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
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
#define PHWHERE
Definition: phool.h:23
A set of parameters for one detector (plane).
Definition: CalibParamXT.h:16
double X1
Maximim X. Half cell width.
Definition: CalibParamXT.h:18
TGraphErrors x2t
Definition: CalibParamXT.h:24
double X0
Minimum X. Usually zero.
Definition: CalibParamXT.h:17