Class Reference for E1039 Core & Analysis Software
ChanMapV1495.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 <db_svc/DbSvc.h>
9 #include "GeomSvc.h"
10 #include "ChanMapV1495.h"
11 using namespace std;
12 
14  ChanMapBase("v1495", "det\tele\tlvl\troc\tboard\tchan")
15 {
16  ;
17 }
18 
20 {
21  istringstream iss;
22  int nn = 0;
23  for (LineList::iterator it = lines.begin(); it != lines.end(); it++) {
24  iss.clear(); // clear any error flags
25  iss.str(*it);
26  string det;
27  short ele, lvl, roc, chan;
28  int board;
29  if (! (iss >> det >> ele >> lvl >> roc >> board >> chan)) continue;
30  Add(roc, board, chan, det, ele, lvl);
31  nn++;
32  }
33  return nn;
34 }
35 
36 int ChanMapV1495::WriteFileCont(std::ostream& os)
37 {
38  int nn = 0;
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";
42  nn++;
43  }
44  return nn;
45 }
46 
48 {
49  ostringstream oss;
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);
61  }
62  delete stmt;
63 }
64 
66 {
67  string name_table = MapTableName();
68 
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" };
71  const int n_var = 7;
72  db.CreateTable(name_table, n_var, list_var, list_type);
73 
74  ostringstream oss;
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 << "),";
79  }
80  string query = oss.str();
81  query.erase(query.length()-1, 1); // Remove the last ',' char.
82  if (! db.Con()->Exec(query.c_str())) {
83  cerr << "!!ERROR!! ChanMapV1495::WriteToDB(): in insert. Abort." << endl;
84  exit(1);
85  }
86 }
87 
92  const short roc, const int board, const short chan,
93  const std::string det, const short ele, const short lvl)
94 {
95  GeomSvc* geom = GeomSvc::instance();
96  string det_new = det;
97  int ele_new = ele;
98  int det_id;
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; }
104  else {
105  geom->toLocalDetectorName(det_new, ele_new);
106  det_id = geom->getDetectorID(det_new);
107  }
108  Add(roc, board, chan, det, det_id, ele, lvl);
109 
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;
115  }
116 }
117 
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)
121 {
122  MapItem item;
123  item.roc = roc;
124  item.board = board;
125  item.chan = chan;
126  item.det_name = det_name;
127  item.det = det_id;
128  item.ele = ele;
129  item.lvl = lvl;
130  m_list.push_back(item);
131  m_map[RocBoardChan_t(roc, board, chan)] = DetEleLvl_t(det_id, ele, lvl);
132 }
133 
134 //bool ChanMapV1495::Find(const short roc, const int board, const short chan, std::string& det, short& ele, short& lvl)
135 //{
136 // RocBoardChan_t key(roc, board, chan);
137 // if (m_map.find(key) != m_map.end()) {
138 // DetEleLvl_t val = m_map[key];
139 // det = std::get<0>(val);
140 // ele = std::get<1>(val);
141 // lvl = std::get<2>(val);
142 // return true;
143 // }
144 // det = "";
145 // ele = lvl = 0;
146 // return false;
147 //}
148 
149 bool ChanMapV1495::Find(const short roc, const int board, const short chan, short& det, short& ele, short& lvl)
150 {
151  RocBoardChan_t key(roc, board, chan);
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);
157  return true;
158  }
159 
160  det = ele = lvl = 0;
161  return false;
162 }
163 
164 void ChanMapV1495::Print(std::ostream& os)
165 {
166  int n_ent = 0;
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";
170  n_ent++;
171  }
172  cout << n_ent << endl;
173 }
std::tuple< short, short, short > RocBoardChan_t
Definition: RunParamBase.h:61
void ReadDbTable(DbSvc &db)
Definition: ChanMapV1495.cc:47
int ReadFileCont(LineList &lines)
Definition: ChanMapV1495.cc:19
void WriteDbTable(DbSvc &db)
Definition: ChanMapV1495.cc:65
void Print(std::ostream &os)
int WriteFileCont(std::ostream &os)
Definition: ChanMapV1495.cc:36
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)
Definition: ChanMapV1495.cc:91
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()