6 #include <TSQLServer.h>
7 #include <TSQLStatement.h>
8 #include <TGraphErrors.h>
24 for (LineList::iterator it = lines.begin(); it != lines.end(); it++) {
30 if (! (iss >> det >> ele >> center >> width))
continue;
31 Add(det, ele, center, width);
40 for (List_t::iterator it = m_list.begin(); it != m_list.end(); it++) {
41 os << it->det_name <<
"\t" << it->ele <<
"\t"
42 << it->center <<
"\t" << it->width <<
"\n";
51 oss <<
"select det_name, det, ele, center, width from " <<
MapTableName();
52 TSQLStatement* stmt = db.
Process(oss.str());
53 while (stmt->NextResultRow()) {
54 string det_name = stmt->GetString(0);
55 short det = stmt->GetInt (1);
56 short ele = stmt->GetInt (2);
57 double center = stmt->GetDouble(3);
58 double width = stmt->GetDouble(4);
59 Add(det_name, det, ele, center, width);
68 const char* list_var [] = {
"det_name",
"det",
"ele",
"center",
"width" };
69 const char* list_type[] = {
"VARCHAR(32)",
"SMALLINT",
"SMALLINT",
"DOUBLE",
"DOUBLE" };
71 db.
CreateTable(name_table, n_var, list_var, list_type);
74 oss <<
"insert into " << name_table <<
"(det_name, det, ele, center, width) values";
75 for (List_t::iterator it = m_list.begin(); it != m_list.end(); it++) {
76 oss <<
" ('" << it->det_name <<
"', " << it->det <<
", " << it->ele <<
", "
77 << it->center <<
", " << it->width <<
"),";
79 string query = oss.str();
80 query.erase(query.length()-1, 1);
81 if (! db.
Con()->Exec(query.c_str())) {
82 cerr <<
"!!ERROR!! CalibParamInTimeTaiwan::WriteToDB(): in insert. Abort." << endl;
88 const std::string det,
const short ele,
89 const double center,
const double width)
96 Add(det, det_id, ele, center, width);
99 cout <<
"!WARNING! CalibParamInTimeTaiwan::Add(): The GeomSvc conversion changed element ID unexpectedly:\n"
100 <<
" From det = " << det <<
", ele = " << ele <<
"\n"
101 <<
" To det = " << det_new <<
"(id = " << det_id <<
"), ele = " << ele_new <<
"\n"
102 <<
" The mapping result will be incorrect!!" << endl;
107 const std::string det_name,
const short det_id,
const short ele,
108 const double center,
const double width)
111 item.det_name = det_name;
114 item.center = center;
116 m_list.push_back(item);
117 m_map[DetEle_t(det_id, ele)] = CenterWidth_t(center, width);
122 DetEle_t key(det, ele);
123 if (m_map.find(key) != m_map.end()) {
124 CenterWidth_t* val = &m_map[key];
128 }
else if (ele != 0) {
129 return Find(det, 0, center, width);
138 for (List_t::iterator it = m_list.begin(); it != m_list.end(); it++) {
139 os << it->det_name <<
"\t" << it->det <<
"\t" << it->ele <<
"\t"
140 << it->center <<
"\t" << it->width <<
"\n";
143 cout <<
" n = " << n_ent << endl;
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()