Class Reference for E1039 Core & Analysis Software
CalibParamInTimeTaiwan.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 <TGraphErrors.h>
9 #include <db_svc/DbSvc.h>
10 #include "GeomSvc.h"
11 #include "CalibParamInTimeTaiwan.h"
12 using namespace std;
13 
15  CalibParamBase("intime_taiwan", "det\tele\tcenter\twidth")
16 {
17  ;
18 }
19 
21 {
22  istringstream iss;
23  int nn = 0;
24  for (LineList::iterator it = lines.begin(); it != lines.end(); it++) {
25  iss.clear(); // clear any error flags
26  iss.str(*it);
27  string det;
28  short ele;
29  double center, width;
30  if (! (iss >> det >> ele >> center >> width)) continue;
31  Add(det, ele, center, width);
32  nn++;
33  }
34  return nn;
35 }
36 
38 {
39  int nn = 0;
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";
43  nn++;
44  }
45  return nn;
46 }
47 
49 {
50  ostringstream oss;
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);
60  }
61  delete stmt;
62 }
63 
65 {
66  string name_table = MapTableName();
67 
68  const char* list_var [] = { "det_name", "det", "ele", "center", "width" };
69  const char* list_type[] = { "VARCHAR(32)", "SMALLINT", "SMALLINT", "DOUBLE", "DOUBLE" };
70  const int n_var = 5;
71  db.CreateTable(name_table, n_var, list_var, list_type);
72 
73  ostringstream oss;
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 << "),";
78  }
79  string query = oss.str();
80  query.erase(query.length()-1, 1); // Remove the last ',' char.
81  if (! db.Con()->Exec(query.c_str())) {
82  cerr << "!!ERROR!! CalibParamInTimeTaiwan::WriteToDB(): in insert. Abort." << endl;
83  exit(1);
84  }
85 }
86 
88  const std::string det, const short ele,
89  const double center, const double width)
90 {
91  GeomSvc* geom = GeomSvc::instance();
92  string det_new = det;
93  int ele_new = ele;
94  geom->toLocalDetectorName(det_new, ele_new);
95  int det_id = geom->getDetectorID(det_new);
96  Add(det, det_id, ele, center, width);
97 
98  if (ele_new != ele) {
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;
103  }
104 }
105 
107  const std::string det_name, const short det_id, const short ele,
108  const double center, const double width)
109 {
110  ParamItem item;
111  item.det_name = det_name;
112  item.det = det_id;
113  item.ele = ele;
114  item.center = center;
115  item.width = width;
116  m_list.push_back(item);
117  m_map[DetEle_t(det_id, ele)] = CenterWidth_t(center, width);
118 }
119 
120 bool CalibParamInTimeTaiwan::Find(const short det, const short ele, double& center, double& width)
121 {
122  DetEle_t key(det, ele);
123  if (m_map.find(key) != m_map.end()) {
124  CenterWidth_t* val = &m_map[key];
125  center = val->first;
126  width = val->second;
127  return true;
128  } else if (ele != 0) { // Try to find an entry common to all elements.
129  return Find(det, 0, center, width);
130  }
131  center = width = 0;
132  return false;
133 }
134 
135 void CalibParamInTimeTaiwan::Print(std::ostream& os)
136 {
137  int n_ent = 0;
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";
141  n_ent++;
142  }
143  cout << " n = " << n_ent << endl;
144 }
void Add(const std::string det, const short ele, const double center, const double width)
void Print(std::ostream &os)
int WriteFileCont(std::ostream &os)
int ReadFileCont(LineList &lines)
bool Find(const short det, const short ele, double &center, double &width)
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()