Class Reference for E1039 Core & Analysis Software
ChanMapTaiwan.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 "ChanMapTaiwan.h"
11 using namespace std;
12 
14  ChanMapBase("taiwan", "det\tele\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, roc, board, chan;
28  if (! (iss >> det >> ele >> roc >> board >> chan)) continue;
29  Add(roc, board, chan, det, ele);
30  nn++;
31  }
32  return nn;
33 }
34 
35 int ChanMapTaiwan::WriteFileCont(std::ostream& os)
36 {
37  int nn = 0;
38  for (List_t::iterator it = m_list.begin(); it != m_list.end(); it++) {
39  os << it->det_name << "\t" << it->ele << "\t"
40  << it->roc << "\t" << it->board << "\t" << it->chan << "\n";
41  nn++;
42  }
43  return nn;
44 }
45 
47 {
48  ostringstream oss;
49  oss << "select roc, board, chan, det_name, det, ele from " << MapTableName();
50  TSQLStatement* stmt = db.Process(oss.str());
51  while (stmt->NextResultRow()) {
52  short roc = stmt->GetInt (0);
53  short board = stmt->GetInt (1);
54  short chan = stmt->GetInt (2);
55  string det_name = stmt->GetString(3);
56  short det = stmt->GetInt (4);
57  short ele = stmt->GetInt (5);
58  Add(roc, board, chan, det_name, det, ele);
59  }
60  delete stmt;
61 }
62 
64 {
65  string name_table = MapTableName();
66 
67  const char* list_var [] = { "roc", "board", "chan", "det_name", "det", "ele" };
68  const char* list_type[] = { "SMALLINT", "SMALLINT", "SMALLINT", "VARCHAR(32)", "SMALLINT", "SMALLINT" };
69  const int n_var = 6;
70  db.CreateTable(name_table, n_var, list_var, list_type);
71 
72  ostringstream oss;
73  oss << "insert into " << name_table << "(roc, board, chan, det_name, det, ele) values";
74  for (List_t::iterator it = m_list.begin(); it != m_list.end(); it++) {
75  oss << " (" << it->roc << ", " << it->board << ", " << it->chan
76  << ", '" << it->det_name << "', " << it->det << ", " << it->ele << "),";
77  }
78  string query = oss.str();
79  query.erase(query.length()-1, 1); // Remove the last ',' char.
80  if (! db.Con()->Exec(query.c_str())) {
81  cerr << "!!ERROR!! ChanMapTaiwan::WriteToDB(): in insert. Abort." << endl;
82  exit(1);
83  }
84 }
85 
87  const short roc, const short board, const short chan,
88  const std::string det, const short ele)
89 {
90  GeomSvc* geom = GeomSvc::instance();
91  string det_new = det;
92  int ele_new = ele;
93  geom->toLocalDetectorName(det_new, ele_new);
94  int det_id = geom->getDetectorID(det_new);
95  Add(roc, board, chan, det, det_id, ele);
96 
97  if (ele_new != ele) {
98  cout << "!WARNING! ChanMapTaiwan::Add(): The GeomSvc conversion changed element ID unexpectedly:\n"
99  << " From det = " << det << ", ele = " << ele << "\n"
100  << " To det = " << det_new << "(id = " << det_id << "), ele = " << ele_new << "\n"
101  << " The mapping result will be incorrect!!" << endl;
102  }
103 }
104 
106  const short roc, const short board, const short chan,
107  const std::string det_name, const short det_id, const short ele)
108 {
109  MapItem item;
110  item.roc = roc;
111  item.board = board;
112  item.chan = chan;
113  item.det_name = det_name;
114  item.det = det_id;
115  item.ele = ele;
116  m_list.push_back(item);
117  m_map[RocBoardChan_t(roc, board, chan)] = DetEle_t(det_id, ele);
118 }
119 
120 //bool ChanMapTaiwan::Find(const short roc, const short board, const short chan, std::string& det, short& ele)
121 //{
122 // RocBoardChan_t key(roc, board, chan);
123 // if (m_map.find(key) != m_map.end()) {
124 // DetEle_t* det_ele = &m_map[key];
125 // det = det_ele->first;
126 // ele = det_ele->second;
127 // return true;
128 // }
129 // det = "";
130 // ele = 0;
131 // return false;
132 //}
133 
134 bool ChanMapTaiwan::Find(const short roc, const short board, const short chan, short& det, short& ele)
135 {
136  RocBoardChan_t key(roc, board, chan);
137  if (m_map.find(key) != m_map.end()) {
138  DetEle_t* det_ele = &m_map[key];
139  det = det_ele->first;
140  ele = det_ele->second;
141  return true;
142  }
143 
144  det = ele = 0;
145  return false;
146 }
147 
148 void ChanMapTaiwan::Print(std::ostream& os)
149 {
150  int n_ent = 0;
151  for (List_t::iterator it = m_list.begin(); it != m_list.end(); it++) {
152  os << it->det_name << "\t" << it->det << "\t" << it->ele << "\t"
153  << it->roc << "\t" << it->board << "\t" << it->chan << "\n";
154  n_ent++;
155  }
156  cout << " n = " << n_ent << endl;
157 }
std::tuple< short, short, short > RocBoardChan_t
Definition: RunParamBase.h:61
void WriteDbTable(DbSvc &db)
void ReadDbTable(DbSvc &db)
int ReadFileCont(LineList &lines)
int WriteFileCont(std::ostream &os)
void Add(const short roc, const short board, const short chan, const std::string det, const short ele)
void Print(std::ostream &os)
bool Find(const short roc, const short board, const short chan, short &det, short &ele)
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()