6 #include <TSQLServer.h>
7 #include <TSQLStatement.h>
14 ChanMapBase(
"v1495",
"det\tele\tlvl\troc\tboard\tchan")
23 for (LineList::iterator it = lines.begin(); it != lines.end(); it++) {
27 short ele, lvl, roc, chan;
29 if (! (iss >> det >> ele >> lvl >> roc >> board >> chan))
continue;
30 Add(roc, board, chan, det, ele, lvl);
39 for (List_t::iterator it = m_list.begin(); it != m_list.end(); it++) {
40 os << it->det_name <<
"\t" << it->ele <<
"\t" << it->lvl <<
"\t"
41 << it->roc <<
"\t" << it->board <<
"\t" << it->chan <<
"\n";
50 oss <<
"select roc, board, chan, det_name, det, ele, lvl from " <<
MapTableName();
51 TSQLStatement* stmt = db.
Process(oss.str());
52 while (stmt->NextResultRow()) {
53 short roc = stmt->GetInt (0);
54 int board = stmt->GetInt (1);
55 short chan = stmt->GetInt (2);
56 string det_name = stmt->GetString(3);
57 short det = stmt->GetInt (4);
58 short ele = stmt->GetInt (5);
59 short lvl = stmt->GetInt (6);
60 Add(roc, board, chan, det_name, det, ele, lvl);
69 const char* list_var [] = {
"roc",
"board",
"chan",
"det_name",
"det",
"ele",
"lvl" };
70 const char* list_type[] = {
"SMALLINT",
"INT",
"SMALLINT",
"VARCHAR(32)",
"SMALLINT",
"SMALLINT",
"SMALLINT" };
72 db.
CreateTable(name_table, n_var, list_var, list_type);
75 oss <<
"insert into " << name_table <<
"(roc, board, chan, det_name, det, ele, lvl) values";
76 for (List_t::iterator it = m_list.begin(); it != m_list.end(); it++) {
77 oss <<
" (" << it->roc <<
", " << it->board <<
", " << it->chan
78 <<
", '" << it->det_name <<
"', " << it->det <<
", " << it->ele <<
", " << it->lvl <<
"),";
80 string query = oss.str();
81 query.erase(query.length()-1, 1);
82 if (! db.
Con()->Exec(query.c_str())) {
83 cerr <<
"!!ERROR!! ChanMapV1495::WriteToDB(): in insert. Abort." << endl;
92 const short roc,
const int board,
const short chan,
93 const std::string det,
const short ele,
const short lvl)
99 if (det ==
"STOP" ) { det_id = 1000; }
100 else if (det ==
"L1PXtp") { det_id = 1001; }
101 else if (det ==
"L1PXtn") { det_id = 1002; }
102 else if (det ==
"L1PXbp") { det_id = 1003; }
103 else if (det ==
"L1PXbn") { det_id = 1004; }
108 Add(roc, board, chan, det, det_id, ele, lvl);
110 if (ele_new != ele) {
111 cout <<
"!WARNING! ChanMapV1495::Add(): The GeomSvc conversion changed element ID unexpectedly:\n"
112 <<
" From det = " << det <<
", ele = " << ele <<
"\n"
113 <<
" To det = " << det_new <<
"(id = " << det_id <<
"), ele = " << ele_new <<
"\n"
114 <<
" The mapping result will be incorrect!!" << endl;
119 const short roc,
const int board,
const short chan,
120 const std::string det_name,
const short det_id,
const short ele,
const short lvl)
126 item.det_name = det_name;
130 m_list.push_back(item);
131 m_map[
RocBoardChan_t(roc, board, chan)] = DetEleLvl_t(det_id, ele, lvl);
149 bool ChanMapV1495::Find(
const short roc,
const int board,
const short chan,
short& det,
short& ele,
short& lvl)
152 if (m_map.find(key) != m_map.end()) {
153 DetEleLvl_t val = m_map[key];
154 det = std::get<0>(val);
155 ele = std::get<1>(val);
156 lvl = std::get<2>(val);
167 for (List_t::iterator it = m_list.begin(); it != m_list.end(); it++) {
168 os << it->det_name <<
"\t" << it->det <<
"\t" << it->ele <<
"\t" << it->lvl <<
"\t"
169 << it->roc <<
"\t" << it->board <<
"\t" << it->chan <<
"\n";
172 cout << n_ent << endl;
std::tuple< short, short, short > RocBoardChan_t
void ReadDbTable(DbSvc &db)
int ReadFileCont(LineList &lines)
void WriteDbTable(DbSvc &db)
void Print(std::ostream &os)
int WriteFileCont(std::ostream &os)
bool Find(const short roc, const int board, const short chan, short &det, short &ele, short &lvl)
void Add(const short roc, const int board, const short chan, const std::string det, const short ele, const short lvl)
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()