Class Reference for E1039 Core & Analysis Software
CalibParamXT.cc
Go to the documentation of this file.
1 #include <iostream>
2 #include <iomanip>
3 #include <sstream>
4 #include <cstdlib>
5 #include <fstream>
6 #include <TSQLServer.h>
7 #include <TSQLStatement.h>
8 #include <TGraphErrors.h>
9 #include <db_svc/DbSvc.h>
10 #include "GeomSvc.h"
11 #include "CalibParamXT.h"
12 using namespace std;
13 
14 void CalibParamXT::Set::Add(const double t, const double x, const double dt, const double dx)
15 {
16  int n_pt = t2x.GetN();
17  t2x .SetPoint (n_pt, t, x);
18  t2dx.SetPoint (n_pt, t, dx);
19  t2dt.SetPoint (n_pt, t, dt);
20  t2x .SetPointError(n_pt, 0, dx);
21  x2t .SetPoint (n_pt, x, t);
22  x2dt.SetPoint (n_pt, x, dt);
23  x2dx.SetPoint (n_pt, x, dx);
24  x2t .SetPointError(n_pt, 0, dt);
25  if (n_pt == 0 || X0 > x) X0 = x;
26  if (n_pt == 0 || X1 < x) X1 = x;
27  if (n_pt == 0 || T0 < t) T0 = t;
28  if (n_pt == 0 || T1 > t) T1 = t;
29 }
30 
32 
34  CalibParamBase("xt_curve", "det\tt\tx\tdt\tdx")
35 {
36  ;
37 }
38 
40 {
41  ;
42 }
43 
45 {
46  istringstream iss;
47  int nn = 0;
48  for (LineList::iterator it = lines.begin(); it != lines.end(); it++) {
49  iss.clear(); // clear any error flags
50  iss.str(*it);
51  string det;
52  double t, x, dt, dx;
53  if (! (iss >> det >> t >> x >> dt >> dx)) continue;
54  Add(det, t, x, dt, dx);
55  nn++;
56  }
57  return nn;
58 }
59 
60 int CalibParamXT::WriteFileCont(std::ostream& os)
61 {
62  int nn = 0;
63  for (List_t::iterator it = m_list.begin(); it != m_list.end(); it++) {
64  os << it->det_name << "\t"
65  << it->t << "\t" << it->x << "\t" << it->dt << "\t" << it->dx << "\n";
66  nn++;
67  }
68  return nn;
69 }
70 
72 {
73  ostringstream oss;
74  oss << "select det_name, det, t, x, dt, dx from " << MapTableName();
75  TSQLStatement* stmt = db.Process(oss.str());
76  while (stmt->NextResultRow()) {
77  string det_name = stmt->GetString(0);
78  short det = stmt->GetInt (1);
79  double t = stmt->GetDouble(2);
80  double x = stmt->GetDouble(3);
81  double dt = stmt->GetDouble(4);
82  double dx = stmt->GetDouble(5);
83  Add(det_name, det, t, x, dt, dx);
84  }
85  delete stmt;
86 }
87 
89 {
90  string name_table = MapTableName();
91 
92  const char* list_var [] = { "det_name", "det", "t", "x", "dt", "dx" };
93  const char* list_type[] = { "VARCHAR(32)", "SMALLINT", "DOUBLE", "DOUBLE", "DOUBLE", "DOUBLE" };
94  const int n_var = 6;
95  db.CreateTable(name_table, n_var, list_var, list_type);
96 
97  ostringstream oss;
98  oss << "insert into " << name_table << "(det_name, det, t, x, dt, dx) values";
99  for (List_t::iterator it = m_list.begin(); it != m_list.end(); it++) {
100  oss << " ('" << it->det_name << "', " << it->det << ", "
101  << it->t << ", " << it->x << ", " << it->dt << ", " << it->dx << "),";
102  }
103  string query = oss.str();
104  query.erase(query.length()-1, 1); // Remove the last ',' char.
105  if (! db.Con()->Exec(query.c_str())) {
106  cerr << "!!ERROR!! CalibParamXT::WriteToDB(): in insert. Abort." << endl;
107  exit(1);
108  }
109 }
110 
112  const std::string det,
113  const double t, const double x, const double dt, const double dx)
114 {
119  if (det[0] == 'P' && det.length() == 3) {
120  Add(det + "1f", t, x, dt, dx);
121  Add(det + "1b", t, x, dt, dx);
122  return;
123  }
124 
125  const int ele = 1; // Any element is OK since the X-T curve is single per plane.
126  GeomSvc* geom = GeomSvc::instance();
127  string det_new = det;
128  int ele_new = ele;
129  geom->toLocalDetectorName(det_new, ele_new);
130  int det_id = geom->getDetectorID(det_new);
131  Add(det, det_id, t, x, dt, dx);
132 
133  //if (ele_new != ele) {
134  // cout << "!WARNING! CalibParamXT::Add(): The GeomSvc conversion changed element ID unexpectedly:\n"
135  // << " From det = " << det << ", ele = " << ele << "\n"
136  // << " To det = " << det_new << " (id=" << det_id << "), ele = " << ele_new << "\n"
137  // << " The mapping result will be incorrect!!" << endl;
138  //}
139 }
140 
142  const std::string det_name, const short det_id,
143  const double t, const double x, const double dt, const double dx)
144 {
145  ParamItem item;
146  item.det_name = det_name;
147  item.det = det_id;
148  item.t = t;
149  item.x = x;
150  item.dt = dt;
151  item.dx = dx;
152  m_list.push_back(item);
153 
154  m_map_sets[det_id].Add(t, x, dt, dx);
155 }
156 
158 {
159  return m_map_sets.find(det) != m_map_sets.end() ? &m_map_sets[det] : 0;
160 }
161 
162 void CalibParamXT::Print(std::ostream& os)
163 {
164  //int n_ent = 0;
165  //for (List_t::iterator it = m_list.begin(); it != m_list.end(); it++) {
166  // os << it->det_name << "\t" << it->det << "\t" << it->ele << "\t"
167  // << it->roc << "\t" << it->board << "\t" << it->chan << "\n";
168  // n_ent++;
169  //}
170  //cout << " n = " << n_ent << endl;
171 }
virtual ~CalibParamXT()
Definition: CalibParamXT.cc:39
int ReadFileCont(LineList &lines)
Definition: CalibParamXT.cc:44
void Add(const std::string det, const double t, const double x, const double dt, const double dx)
int WriteFileCont(std::ostream &os)
Definition: CalibParamXT.cc:60
void WriteDbTable(DbSvc &db)
Definition: CalibParamXT.cc:88
void Print(std::ostream &os)
Set * GetParam(const short det)
Return a set of parameters for det. Return 0 if det is invalid.
void ReadDbTable(DbSvc &db)
Definition: CalibParamXT.cc:71
Standard interface with SQL database.
Definition: DbSvc.h:15
TSQLStatement * Process(const char *query)
Definition: DbSvc.cc:176
void CreateTable(const std::string name, const std::vector< std::string > list_var, const std::vector< std::string > list_type, const std::vector< std::string > list_key)
Definition: DbSvc.cc:102
TSQLServer * Con()
Definition: DbSvc.h:44
User interface class about the geometry of detector planes.
Definition: GeomSvc.h:164
int getDetectorID(const std::string &detectorName) const
Get the plane position.
Definition: GeomSvc.h:219
static GeomSvc * instance()
singlton instance
Definition: GeomSvc.cxx:212
void toLocalDetectorName(std::string &detectorName, int &eID)
Convert the official detectorName to local detectorName.
Definition: GeomSvc.cxx:740
std::vector< std::string > LineList
Definition: RunParamBase.h:51
std::string MapTableName()
A set of parameters for one detector (plane).
Definition: CalibParamXT.h:16
void Add(const double t, const double x, const double dt, const double dx)
Definition: CalibParamXT.cc:14