8 #include <TClonesArray.h>
15 #include <ktracker/FastTracklet.h>
33 cout <<
"'iter' must be a positive integer. Abort." << endl;
49 oss <<
"calib/" << m_iter;
50 m_dir_name_out = oss.str();
51 gSystem->mkdir(m_dir_name_out.c_str(), kTRUE);
54 cal_par.
Init(N_RT_PT);
57 oss <<
"calib/" << (m_iter-1) <<
"/param.tsv";
67 cal_dat.
Init(&cal_par);
72 ifstream ifs(fn_list);
74 while (ifs >> fn_file)
AnalyzeFile(fn_file.c_str());
80 if (gSystem->AccessPathName(fname))
return;
81 cout <<
"Input: " << fname << endl;
82 TFile* dataFile =
new TFile(fname,
"READ");
83 TTree* dataTree = (TTree*)dataFile->Get(
"eval");
88 static TClonesArray* tracklets =
new TClonesArray(
"Tracklet");
92 dataTree->SetBranchAddress(
"tracklets", &tracklets);
97 int n_evt = dataTree->GetEntries();
98 for (
int i_evt = 0; i_evt < n_evt; i_evt++) {
99 dataTree->GetEntry(i_evt);
106 int n_trk = tracklets->GetEntries();
109 map<int, int> list_n_trk;
110 for (
int i_trk = 0; i_trk < n_trk; i_trk++) {
115 if (list_n_trk[ST_ID_D3M] > 64)
continue;
121 double rchi2_best = 0;
122 for (
int i_trk = 0; i_trk < n_trk; i_trk++) {
125 if (st_id != ST_ID_D3M)
continue;
129 double rchi2 = trk->
chisq / ndf;
130 if (n_hit != 6)
continue;
131 if (rchi2 > 3.0)
continue;
135 EvalD2XY(trk, x_d2, y_d2);
136 EvalD3XY(trk, x_d3, y_d3);
138 if (fabs(trk->
tx) > 0.3 || fabs(trk->
ty) > 0.4 ||
139 fabs(x_d3) > 131 || fabs(y_d3+85) > 85 )
continue;
145 if (i_trk_best < 0 || rchi2 < rchi2_best) {
151 if (i_trk_best >= 0) {
156 for(std::list<SignedHit>::iterator it = trk->
hits.begin(); it != trk->
hits.end(); ++it) {
157 if(it->hit.index < 0)
continue;
159 int det_id = it->hit.detectorID;
160 int ele_id = it->hit.elementID;
161 double drift_dist = it->hit.driftDistance;
162 double tdc_time = it->hit.tdcTime;
164 double wire_pos = it->hit.pos;
165 cal_dat.
FillHit(det_id, drift_dist, tdc_time, track_pos, wire_pos);
173 cout <<
" N of all events = " << n_evt <<
", analyzed events = " << n_evt_ana <<
", tracks = " << n_trk_ana << endl;
174 m_n_evt_all += n_evt;
175 m_n_evt_ana += n_evt_ana;
176 m_n_trk_all += n_trk_all;
177 m_n_trk_ana += n_trk_ana;
183 string fname = m_dir_name_out +
"/info_event.txt";
184 ofstream ofs(fname.c_str());
185 ofs << m_n_evt_all <<
"\n"
186 << m_n_evt_ana <<
"\n"
187 << m_n_trk_all <<
"\n"
188 << m_n_trk_ana <<
"\n";
199 cout <<
"ExtractRT()" << endl;
205 cout <<
" Plane " << ip+1 << endl;
207 double t1 = cal_par.
GetT1(ip);
208 double t0 = cal_par.
GetT0(ip);
212 double r_max = cal_par.
GetRMax (ip);
228 cout <<
"DrawCalibResult()" << endl;
229 TCanvas* c1 =
new TCanvas(
"c1",
"", 800, 600);
231 gStyle->SetOptStat(0);
232 TLegend* leg =
new TLegend(0.7, 0.7, 0.9, 0.9);
233 leg->SetTextFont(22);
234 leg->SetBorderSize(1);
235 leg->SetFillColor(0);
250 spl_t2r->SetMarkerStyle(10);
251 spl_t2r->SetLineWidth(2);
252 spl_t2r->Draw(
"sameCP");
254 gr_t2dr->SetMarkerColor(kGreen);
255 gr_t2dr->SetMarkerStyle(10);
256 gr_t2dr->SetLineWidth(2);
257 gr_t2dr->Draw(
"sameP");
259 gr_t2r_in->SetLineStyle(2);
260 gr_t2r_in->SetLineWidth(2);
261 gr_t2r_in->Draw(
"sameC");
263 leg->AddEntry(spl_t2r ,
"Output",
"l");
264 leg->AddEntry(gr_t2r_in,
"Input" ,
"l");
268 oss << m_dir_name_out <<
"/rt_result_" << setw(2) << (ip+1) <<
"_" << geom->
getDetectorName(ip+1) <<
".png";
270 c1->SaveAs(oss.str().c_str());
275 TH1* h1_res =
new TH1D(
"h1_res",
";;Resolution (cm)", n_pl, 0, n_pl);
276 for (
int ip = 0; ip < n_pl; ip++) {
280 h1_res->GetXaxis()->SetBinLabel(ip+1, det_name.c_str());
282 h1_res->GetYaxis()->SetRangeUser(0, 0.08);
283 h1_res->SetMarkerColor(kRed);
284 h1_res->SetMarkerStyle(10);
285 h1_res->GetXaxis()->LabelsOption(
"v");
288 oss << m_dir_name_out <<
"/h1_res.png";
289 c1->SaveAs(oss.str().c_str());
309 void MakeRTCurve::EvalD2XY(
const Tracklet* trk,
double& x,
double& y)
311 x = trk->
x0 + 1345 * trk->
tx;
312 y = trk->
y0 + 1345 * trk->
ty;
315 void MakeRTCurve::EvalD3XY(
const Tracklet* trk,
double& x,
double& y)
317 x = trk->
x0 + 1900 * trk->
tx;
318 y = trk->
y0 + 1900 * trk->
ty;
void FillTracklet(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)
void FillHit(const int det_id, const double drift_dist, const double tdc_time, const double track_pos, const double wire_pos)
Fill the hit information.
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)
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)
User interface class about the geometry of detector planes.
static GeomSvc * instance()
singlton instance
std::string getDetectorName(const int &detectorID) const
MakeRTCurve(const int iter)
void AnalyzeFile(const char *fname)
void AnalyzeListOfFiles(const char *fn_list)
TSpline3 * GetT2RSpline()
std::list< SignedHit > hits
double getExpPositionW(int detectorID) const