6 #include <TSQLServer.h>
7 #include <TSQLStatement.h>
8 #include <TGraphErrors.h>
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;
48 for (LineList::iterator it = lines.begin(); it != lines.end(); it++) {
53 if (! (iss >> det >> t >> x >> dt >> dx))
continue;
54 Add(det, t, x, dt, dx);
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";
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);
92 const char* list_var [] = {
"det_name",
"det",
"t",
"x",
"dt",
"dx" };
93 const char* list_type[] = {
"VARCHAR(32)",
"SMALLINT",
"DOUBLE",
"DOUBLE",
"DOUBLE",
"DOUBLE" };
95 db.
CreateTable(name_table, n_var, list_var, list_type);
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 <<
"),";
103 string query = oss.str();
104 query.erase(query.length()-1, 1);
105 if (! db.
Con()->Exec(query.c_str())) {
106 cerr <<
"!!ERROR!! CalibParamXT::WriteToDB(): in insert. Abort." << endl;
112 const std::string det,
113 const double t,
const double x,
const double dt,
const double dx)
119 if (det[0] ==
'P' && det.length() == 3) {
120 Add(det +
"1f", t, x, dt, dx);
121 Add(det +
"1b", t, x, dt, dx);
127 string det_new = det;
131 Add(det, det_id, t, x, dt, dx);
142 const std::string det_name,
const short det_id,
143 const double t,
const double x,
const double dt,
const double dx)
146 item.det_name = det_name;
152 m_list.push_back(item);
154 m_map_sets[det_id].Add(t, x, dt, dx);
159 return m_map_sets.find(det) != m_map_sets.end() ? &m_map_sets[det] : 0;
int ReadFileCont(LineList &lines)
void Add(const std::string det, const double t, const double x, const double dt, const double dx)
int WriteFileCont(std::ostream &os)
void WriteDbTable(DbSvc &db)
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)
Standard interface with SQL database.
TSQLStatement * Process(const char *query)
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)
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
void toLocalDetectorName(std::string &detectorName, int &eID)
Convert the official detectorName to local detectorName.
std::vector< std::string > LineList
std::string MapTableName()
A set of parameters for one detector (plane).
void Add(const double t, const double x, const double dt, const double dx)