14 #include <ktracker/FastTracklet.h>
50 m_evt = findNode::getClass<SQEvent >(topNode,
"SQEvent");
52 m_trklet_vec = findNode::getClass<TrackletVector>(topNode,
"TrackletVector");
57 oss <<
"calib/" << m_iter;
58 m_dir_name_out = oss.str();
59 gSystem->mkdir(m_dir_name_out.c_str(), kTRUE);
62 cal_par.
Init(N_RT_PT);
65 oss <<
"calib/" << (m_iter-1) <<
"/param.tsv";
75 cal_dat.
Init(&cal_par);
93 int n_trk = m_trklet_vec->
size();
96 map<int, int> list_n_trk;
97 for (
int i_trk = 0; i_trk < n_trk; i_trk++) {
106 m_n_trk_ana +=
AnaForOneStation(m_trklet_vec, ST_ID_D0 , list_n_trk[ST_ID_D0 ]);
108 m_n_trk_ana +=
AnaForOneStation(m_trklet_vec, ST_ID_D2 , list_n_trk[ST_ID_D2 ]);
109 m_n_trk_ana +=
AnaForOneStation(m_trklet_vec, ST_ID_D3P, list_n_trk[ST_ID_D3P]);
110 m_n_trk_ana +=
AnaForOneStation(m_trklet_vec, ST_ID_D3M, list_n_trk[ST_ID_D3M]);
118 if (n_trklet > 128)
return 0;
121 if (i_trk_best < 0)
return 0;
132 case ST_ID_D0 : x_lo= -45; x_hi= 45; y_lo= -55; y_hi= 55; tx_lo=-0.20; tx_hi=0.20; ty_lo=-0.25; ty_hi=0.25;
break;
133 case ST_ID_D2 : x_lo= -90; x_hi= 90; y_lo=-120; y_hi=120; tx_lo=-0.25; tx_hi=0.25; ty_lo=-0.35; ty_hi=0.35;
break;
134 case ST_ID_D3P: x_lo=-120; x_hi=120; y_lo= 0; y_hi=150; tx_lo=-0.25; tx_hi=0.25; ty_lo=-0.35; ty_hi=0.35;
break;
135 case ST_ID_D3M: x_lo=-120; x_hi=120; y_lo=-150; y_hi= 0; tx_lo=-0.25; tx_hi=0.25; ty_lo=-0.35; ty_hi=0.35;
break;
148 double x = trk->
x0 + z_st * tx;
149 double y = trk->
y0 + z_st * ty;
151 double x_lo, x_hi, y_lo, y_hi;
152 double tx_lo, tx_hi, ty_lo, ty_hi;
155 return x_lo < x && x < x_hi && y_lo < y && y < y_hi &&
156 tx_lo < tx && tx < tx_hi && ty_lo < ty && ty < ty_hi ;
162 double rchi2_best = 0;
163 for (
int i_trk = 0; i_trk < m_trklet_vec->
size(); i_trk++) {
166 if (st_id != st_id_tgt)
continue;
170 double rchi2 = trk->
chisq / ndf;
172 if (n_hit < 5)
continue;
173 if (rchi2 > 3.0)
continue;
175 if (i_trk_best < 0 || rchi2 < rchi2_best) {
197 string fname = m_dir_name_out +
"/info_event.txt";
198 ofstream ofs(fname.c_str());
199 ofs << m_n_evt_all <<
"\n"
200 << m_n_evt_ana <<
"\n"
201 << m_n_trk_all <<
"\n"
202 << m_n_trk_ana <<
"\n";
213 cout <<
"ExtractRT()" << endl;
219 cout <<
" Plane " << ip+1 << endl;
221 double t1 = cal_par.
GetT1(ip);
222 double t0 = cal_par.
GetT0(ip);
226 double r_max = cal_par.
GetRMax (ip);
242 cout <<
"DrawCalibResult()" << endl;
243 TCanvas* c1 =
new TCanvas(
"c1",
"", 800, 600);
245 gStyle->SetOptStat(0);
246 TLegend* leg =
new TLegend(0.7, 0.7, 0.9, 0.9);
247 leg->SetTextFont(22);
248 leg->SetBorderSize(1);
249 leg->SetFillColor(0);
264 spl_t2r->SetMarkerStyle(10);
265 spl_t2r->SetLineWidth(2);
266 spl_t2r->Draw(
"sameCP");
268 gr_t2dr->SetMarkerColor(kGreen);
269 gr_t2dr->SetMarkerStyle(10);
270 gr_t2dr->SetLineWidth(2);
271 gr_t2dr->Draw(
"sameP");
273 gr_t2r_in->SetLineStyle(2);
274 gr_t2r_in->SetLineWidth(2);
275 gr_t2r_in->Draw(
"sameC");
277 leg->AddEntry(spl_t2r ,
"Output",
"l");
278 leg->AddEntry(gr_t2r_in,
"Input" ,
"l");
282 oss << m_dir_name_out <<
"/rt_result_" << setw(2) << (ip+1) <<
"_" << geom->
getDetectorName(ip+1) <<
".png";
284 c1->SaveAs(oss.str().c_str());
289 TH1* h1_res =
new TH1D(
"h1_res",
";;Resolution (cm)", n_pl, 0, n_pl);
290 for (
int ip = 0; ip < n_pl; ip++) {
294 h1_res->GetXaxis()->SetBinLabel(ip+1, det_name.c_str());
296 h1_res->GetYaxis()->SetRangeUser(0, 0.08);
297 h1_res->SetMarkerColor(kRed);
298 h1_res->SetMarkerStyle(10);
299 h1_res->GetXaxis()->LabelsOption(
"v");
302 oss << m_dir_name_out <<
"/h1_res.png";
303 c1->SaveAs(oss.str().c_str());
void FillTracklet(const Tracklet *trk)
void FillTrackletHits(const Tracklet *trk)
void DrawHistHit(const std::string dir_out)
void DrawHistEvent(const std::string dir_out)
void FillEventInfo(const int rec_stat, const std::map< int, int > list_n_trk)
TH2 * GetHistRT(const int ipl) const
void Init(CalibParam *ptr)
bool GetAnaPlane(const int i_pl)
void Init(const int n_rt_pt)
double GetRMax(const int i_pl) const
void WriteRTParam(const std::string dir_name, const std::string fname)
double GetT0(const int i_pl) const
void WriteRTGraph(const std::string dir_name, const std::string fname)
TGraph * GetGraphT2R(const int i_pl) const
double GetT1(const int i_pl) const
void ReadRTParam(const std::string fname)
static double ZOfStationID(const int st_id)
RTCurve * GetRTCurve(const int i_pl) const
void SetAnaPlanes(const bool d0, const bool d1, const bool d2, const bool d3p, const bool d3m)
bool TimeWindowIsFixed() const
Class for fitting R-T histogram.
void Verbosity(const int verb)
int DoFit(const int n_pt, TH2 *h2, double r_max, TGraph *gr_init, RTCurve *rtc)
void FixT1T0(const double t1, const double t0)
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
TSpline3 * GetT2RSpline()
virtual bool get_trigger(const SQEvent::TriggerMask i) const =0
Return the trigger bit (fired or not) of the selected trigger channel.
int AnaForOneStation(TrackletVector *trklet_vec, const int st_id, const int n_trklet)
void GetGoodTrackletRange(const int st_id, double &x_lo, double &x_hi, double &y_lo, double &y_hi, double &tx_lo, double &tx_hi, double &ty_lo, double &ty_hi)
bool InAcceptance(const Tracklet *trk)
int Init(PHCompositeNode *topNode)
int FindBestTracklet(TrackletVector *trklet_vec, const int st_id_tgt)
int process_event(PHCompositeNode *topNode)
SRMakeRTCurve(const int iter, const std::string &name="SRMakeRTCurve")
int InitRun(PHCompositeNode *topNode)
int End(PHCompositeNode *topNode)
Called at the end of all processing.
const Tracklet * at(const size_t index) const