Class Reference for E1039 Core & Analysis Software
GeomParamPlane.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 "GeomParamPlane.h"
10 using namespace std;
11 
13  GeomParamBase("plane", "to\tbe\tfilled")
14 {
15  ;
16 }
17 
19 {
20  istringstream iss;
21  int nn = 0;
22  for (LineList::iterator it = lines.begin(); it != lines.end(); it++) {
23  iss.clear(); // clear any error flags
24  iss.str(*it);
25  Plane pl;
26  if (! (iss >> pl.det_name >> pl.n_ele >> pl.cell_spacing >> pl.cell_width >> pl.angle_from_vert >> pl.xoffset >> pl.width >> pl.height >> pl.x0 >> pl.y0 >> pl.z0 >> pl.theta_x >> pl.theta_y >> pl.theta_z)) continue;
27  Add(pl);
28  nn++;
29  }
30  return nn;
31 }
32 
33 int GeomParamPlane::WriteFileCont(std::ostream& os)
34 {
35  int nn = 0;
36  for (List_t::iterator it = m_list.begin(); it != m_list.end(); it++) {
37  os << it->det_name << "\t" << it->n_ele << "\t" << it->cell_spacing << "\t" << it->cell_width << "\t" << it->angle_from_vert << "\t" << it->xoffset << "\t" << it->width << "\t" << it->height << "\t" << it->x0 << "\t" << it->y0 << "\t" << it->z0 << "\t" << it->theta_x << "\t" << it->theta_y << "\t" << it->theta_z << "\n";
38  nn++;
39  }
40  return nn;
41 }
42 
44 {
45  ostringstream oss;
46  oss << "select det_name, n_ele, cell_spacing, cell_width, angle_from_vert, xoffset, width, height, x0, y0, z0, theta_x, theta_y, theta_z from " << MapTableName();
47  TSQLStatement* stmt = db.Process(oss.str());
48  while (stmt->NextResultRow()) {
49  Plane pl;
50  pl.det_name = stmt->GetString( 0);
51  pl.n_ele = stmt->GetInt ( 1);
52  pl.cell_spacing = stmt->GetDouble( 2);
53  pl.cell_width = stmt->GetDouble( 3);
54  pl.angle_from_vert = stmt->GetDouble( 4);
55  pl.xoffset = stmt->GetDouble( 5);
56  pl.width = stmt->GetDouble( 6);
57  pl.height = stmt->GetDouble( 7);
58  pl.x0 = stmt->GetDouble( 8);
59  pl.y0 = stmt->GetDouble( 9);
60  pl.z0 = stmt->GetDouble(10);
61  pl.theta_x = stmt->GetDouble(11);
62  pl.theta_y = stmt->GetDouble(12);
63  pl.theta_z = stmt->GetDouble(13);
64  Add(pl);
65  }
66  delete stmt;
67 }
68 
70 {
71  string name_table = MapTableName();
72 
73  DbSvc::VarList list;
74  list.Add("det_name" , "VARCHAR(16)", true);
75  list.Add("n_ele" , "INT");
76  list.Add("cell_spacing" , "DOUBLE");
77  list.Add("cell_width" , "DOUBLE");
78  list.Add("angle_from_vert", "DOUBLE");
79  list.Add("xoffset" , "DOUBLE");
80  list.Add("width" , "DOUBLE");
81  list.Add("height" , "DOUBLE");
82  list.Add("x0" , "DOUBLE");
83  list.Add("y0" , "DOUBLE");
84  list.Add("z0" , "DOUBLE");
85  list.Add("theta_x" , "DOUBLE");
86  list.Add("theta_y" , "DOUBLE");
87  list.Add("theta_z" , "DOUBLE");
88  db.CreateTable(name_table, list);
89 
90  ostringstream oss;
91  oss << "insert into " << name_table << "(det_name, n_ele, cell_spacing, cell_width, angle_from_vert, xoffset, width, height, x0, y0, z0, theta_x, theta_y, theta_z) values";
92  for (List_t::iterator it = m_list.begin(); it != m_list.end(); it++) {
93  oss << " ('" << it->det_name << "', " << it->n_ele << ", " << it->cell_spacing << ", " << it->cell_width << ", " << it->angle_from_vert << ", " << it->xoffset << ", " << it->width << ", " << it->height << ", " << it->x0 << ", " << it->y0 << ", " << it->z0 << ", " << it->theta_x << ", " << it->theta_y << ", " << it->theta_z << "),";
94  }
95  string query = oss.str();
96  query.erase(query.length()-1, 1); // Remove the last ',' char.
97  if (! db.Con()->Exec(query.c_str())) {
98  cerr << "!!ERROR!! GeomParamPlane::WriteToDB(): in insert. Abort." << endl;
99  exit(1);
100  }
101 }
102 
103 void GeomParamPlane::Add(const Plane& plane)
104 {
105  m_list.push_back(plane);
106  m_map[plane.det_name] = plane;
107 }
108 
109 bool GeomParamPlane::Find(const std::string det_name, Plane*& plane)
110 {
111  if (m_map.find(det_name) != m_map.end()) {
112  plane = &m_map[det_name];
113  return true;
114  }
115  plane = 0;
116  return false;
117 }
118 
119 void GeomParamPlane::Print(std::ostream& os)
120 {
121  int n_ent = 0;
122  for (List_t::iterator it = m_list.begin(); it != m_list.end(); it++) {
123  os << "To be implemented.\n";
124  n_ent++;
125  }
126  cout << " n = " << n_ent << endl;
127 }
void Add(const std::string name, const std::string type, const bool is_key=false)
Definition: DbSvc.cc:282
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
bool Find(const std::string det_name, Plane *&plane)
void Add(const Plane &plane)
int ReadFileCont(LineList &lines)
void Print(std::ostream &os)
void ReadDbTable(DbSvc &db)
int WriteFileCont(std::ostream &os)
void WriteDbTable(DbSvc &db)
std::vector< std::string > LineList
Definition: RunParamBase.h:51
std::string MapTableName()