12 const double CalibParam::DT_RT = 2.5;
15 : fix_time_window(false)
17 memset(m_ana_pl, 0,
sizeof(m_ana_pl));
18 memset(m_rtc, 0,
sizeof(m_rtc));
28 for (
int ip = 0; ip < 6; ip++) m_ana_pl[ip] = d0;
29 for (
int ip = 6; ip < 12; ip++) m_ana_pl[ip] = d1;
30 for (
int ip = 12; ip < 18; ip++) m_ana_pl[ip] = d2;
31 for (
int ip = 18; ip < 24; ip++) m_ana_pl[ip] = d3p;
32 for (
int ip = 24; ip < 30; ip++) m_ana_pl[ip] = d3m;
37 T_MIN[ 0] = 1200; T_MAX[ 0] = 1330;
38 T_MIN[ 1] = 1200; T_MAX[ 1] = 1330;
39 T_MIN[ 2] = 1200; T_MAX[ 2] = 1330;
40 T_MIN[ 3] = 1200; T_MAX[ 3] = 1330;
41 T_MIN[ 4] = 1200; T_MAX[ 4] = 1330;
42 T_MIN[ 5] = 1200; T_MAX[ 5] = 1330;
44 T_MIN[ 6] = 1700; T_MAX[ 6] = 1800;
45 T_MIN[ 7] = 1700; T_MAX[ 7] = 1800;
46 T_MIN[ 8] = 1700; T_MAX[ 8] = 1800;
47 T_MIN[ 9] = 1700; T_MAX[ 9] = 1800;
48 T_MIN[10] = 1700; T_MAX[10] = 1800;
49 T_MIN[11] = 1700; T_MAX[11] = 1800;
51 T_MIN[12] = 800; T_MAX[12] = 1300;
52 T_MIN[13] = 800; T_MAX[13] = 1300;
53 T_MIN[14] = 800; T_MAX[14] = 1300;
54 T_MIN[15] = 800; T_MAX[15] = 1300;
55 T_MIN[16] = 800; T_MAX[16] = 1300;
56 T_MIN[17] = 800; T_MAX[17] = 1300;
58 T_MIN[18] = 700; T_MAX[18] = 1200;
59 T_MIN[19] = 700; T_MAX[19] = 1200;
60 T_MIN[20] = 700; T_MAX[20] = 1200;
61 T_MIN[21] = 700; T_MAX[21] = 1200;
62 T_MIN[22] = 700; T_MAX[22] = 1200;
63 T_MIN[23] = 700; T_MAX[23] = 1200;
65 T_MIN[24] = 800; T_MAX[24] = 1300;
66 T_MIN[25] = 800; T_MAX[25] = 1300;
67 T_MIN[26] = 800; T_MAX[26] = 1300;
68 T_MIN[27] = 800; T_MAX[27] = 1300;
69 T_MIN[28] = 800; T_MAX[28] = 1300;
70 T_MIN[29] = 800; T_MAX[29] = 1300;
73 for (
int ip = 0; ip < N_PL; ip++) {
75 m_rtc[ip] =
new RTCurve(n_rt_pt);
76 m_gr_t2r_in[ip] =
new TGraph();
84 cout <<
"ReadRTParam(): input = " << fname <<
"." << endl;
85 ifstream ifs(fname.c_str());
87 cerr <<
"ERROR: Cannot open the input file. Abort." << endl;
92 while (ifs.getline(buf, 300)) {
93 if (buf[0] !=
'D')
continue;
94 istringstream iss(buf);
97 iss >> det >> t >> x >> dt >> dx;
99 TGraph* gr = m_gr_t2r_in[det_id - 1];
100 gr->SetPoint(gr->GetN(), t, x);
105 for (
int ip = 0; ip < N_PL; ip++) {
106 TGraph* gr = m_gr_t2r_in[ip];
107 int n_pt = gr->GetN();
108 if (n_pt > 0 && gr->GetX()[0] > gr->GetX()[n_pt-1]) {
109 for (
int i_pt = 0; i_pt < n_pt / 2; i_pt++) {
110 double t1, x1, t2, x2;
111 gr->GetPoint( i_pt , t1, x1);
112 gr->GetPoint(n_pt-i_pt-1, t2, x2);
113 gr->SetPoint( i_pt , t2, x2);
114 gr->SetPoint(n_pt-i_pt-1, t1, x1);
122 cout <<
"WriteRTParam(): output = " << dir_name <<
"." << endl;
124 oss << dir_name <<
"/" << fname;
125 ofstream ofs1(oss.str().c_str());
126 ofs1.setf(ios_base::fixed, ios_base::floatfield);
128 ofs1 <<
"#det\tt\tx\tdt\tdx\n";
131 for (
int ip = 0; ip < N_PL; ip++) {
132 if (! m_ana_pl[ip])
continue;
136 if (fix_time_window) {
139 n_pt = (int)((t_max - t_min) / DT_RT) + 1;
141 n_pt = m_gr_t2r_in[ip]->GetN();
142 t_min = m_gr_t2r_in[ip]->GetX()[0];
143 t_max = m_gr_t2r_in[ip]->GetX()[n_pt-1];
148 double dt = dx * (t_max - t_min) / R_MAX[ip];
150 for (
int i_pt = 0; i_pt < n_pt; i_pt++) {
151 double t = t_min + DT_RT * i_pt;
152 double x = m_rtc[ip]->
EvalR(t);
154 << setprecision(1) << t <<
"\t"
155 << setprecision(4) << x <<
"\t"
156 << setprecision(3) << dt <<
"\t"
157 << setprecision(3) << dx <<
"\n";
175 oss << dir_name <<
"/" << fname;
176 TFile* file =
new TFile(oss.str().c_str(),
"RECREATE");
179 for(
int ip = 0; ip < N_PL; ip++){
180 if (! m_ana_pl[ip])
continue;
184 m_gr_t2r_in[ip]->SetName(oss.str().c_str());
185 m_gr_t2r_in[ip]->Write();
190 gr_t2dr->SetName(oss.str().c_str());
196 spl_t2r->SetName(oss.str().c_str());
206 cout <<
"ReadTimeWindow(): input = " << fname <<
"." << endl;
207 ifstream ifs(fname.c_str());
209 cerr <<
"ERROR: Cannot open the input file. Abort." << endl;
215 while (ifs >> det_id >> t1 >> t0 >> det_name) {
216 cout <<
" " << det_id <<
"\t" << t1 <<
"\t" << t0 <<
"\t" << det_name <<
"\n";
221 fix_time_window =
true;
226 if (st_id == 1)
return 620;
227 else if (st_id == 3)
return 1345;
228 else if (st_id == 4)
return 1900;
229 else if (st_id == 5)
return 1900;
231 cout <<
"CalibParam::ZOfStationID(): Unsupported station ID (" << st_id <<
"). Abort." << endl;
void ReadTimeWindow(const std::string fname)
void Init(const int n_rt_pt)
void WriteRTParam(const std::string dir_name, const std::string fname)
void WriteRTGraph(const std::string dir_name, const std::string fname)
void ReadRTParam(const std::string fname)
static double ZOfStationID(const int st_id)
void SetAnaPlanes(const bool d0, const bool d1, const bool d2, const bool d3p, const bool d3m)
User interface class about the geometry of detector planes.
int getDetectorID(const std::string &detectorName) const
Get the plane position.
static GeomSvc * instance()
singlton instance
std::string getDetectorName(const int &detectorID) const
double getCellWidth(int detectorID) const
Class to represent R-T curve.
double EvalR(const double t)
TSpline3 * GetT2RSpline()