3 #include <TGraphErrors.h>
28 if (m_cal_xt )
delete m_cal_xt ;
44 m_hit_vec = findNode::getClass<SQHitVector>(topNode,
"SQHitVector");
46 cerr <<
Name() <<
": SQHitVector node missing. Abort." << endl;
63 if (
Verbosity() >= 2) cout <<
"SQChamberRealization: n_hits=" << m_hit_vec->
size() << endl;
65 while (it != m_hit_vec->
end()) {
68 PlaneParam* param = &list_param[det_id];
75 bool is_eff = (gRandom->Rndm() < param->eff);
78 cout <<
" Hit: det=" << det_id <<
":" << det_name <<
" ele=" << ele_id <<
" is_eff=" << is_eff << endl;
81 it = m_hit_vec->
erase(it);
88 int dist_sign = dist > 0 ? +1 : -1;
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;
100 dist_new = gRandom->Gaus(dist, dx);
101 if (xt->
X0 <= dist_new && dist_new <= xt->X1)
break;
105 cout <<
PHWHERE <<
" Failed at generating an in-range drift time. Something unexpected. Abort." << endl;
124 if (
Verbosity() > 0) cout <<
"SQChamberRealization::SetChamEff():\n";
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;
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;
144 if (
Verbosity() > 0) cout <<
"SQChamberRealization::SetProTubeEff():\n";
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;
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;
163 if (
Verbosity() > 0) cout <<
"SQChamberRealization::ScaleChamReso():\n";
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;
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;
183 if (
Verbosity() > 0) cout <<
"SQChamberRealization::FixChamReso():\n";
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;
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;
Calibration parameter for chamber X-T relation.
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.
virtual int Verbosity() const
Gets the verbosity of this module.
User interface class about the geometry of detector planes.
static GeomSvc * instance()
singlton instance
std::string getDetectorName(const int &detectorID) const
virtual int get_IntFlag(const std::string &name) const
void SetMapIDbyDB(const std::string map_id)
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.
virtual ~SQChamberRealization()
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
virtual size_t size() const =0
An SQ interface class to hold one detector hit.
virtual float get_drift_distance() const
Return the drift distance of this hit. Probably the value is not properly set at present....
virtual void set_tdc_time(const float a)
virtual short get_element_id() const
Return the element ID of this hit.
virtual void set_drift_distance(const float a)
virtual short get_detector_id() const
Return the detector ID of this hit.
static recoConsts * instance()
virtual void set_CharFlag(const std::string &name, const std::string &flag)
overide the virtual function to expand the environmental variables
A set of parameters for one detector (plane).
double X1
Maximim X. Half cell width.
double X0
Minimum X. Usually zero.