6 #include <TSQLServer.h>
7 #include <TSQLStatement.h>
22 for (LineList::iterator it = lines.begin(); it != lines.end(); it++) {
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";
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()) {
51 pl.
n_ele = stmt->GetInt ( 1);
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);
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");
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 <<
"),";
95 string query = oss.str();
96 query.erase(query.length()-1, 1);
97 if (! db.
Con()->Exec(query.c_str())) {
98 cerr <<
"!!ERROR!! GeomParamPlane::WriteToDB(): in insert. Abort." << endl;
105 m_list.push_back(plane);
111 if (m_map.find(det_name) != m_map.end()) {
112 plane = &m_map[det_name];
122 for (List_t::iterator it = m_list.begin(); it != m_list.end(); it++) {
123 os <<
"To be implemented.\n";
126 cout <<
" n = " << n_ent << endl;
void Add(const std::string name, const std::string type, const bool is_key=false)
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)
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
std::string MapTableName()