CMS 3D CMS Logo

MonShapeQualityDat.cc
Go to the documentation of this file.
1 #include <stdexcept>
2 #include <string>
4 
8 
9 using namespace std;
10 using namespace oracle::occi;
11 
13 {
14  m_env = nullptr;
15  m_conn = nullptr;
16  m_writeStmt = nullptr;
17  m_readStmt = nullptr;
18 
19  m_avgChi2 = 0;
20 }
21 
22 
23 
25 {
26 }
27 
28 
29 
32 {
33  this->checkConnection();
34 
35  try {
36  m_writeStmt = m_conn->createStatement();
37  m_writeStmt->setSQL("INSERT INTO mon_shape_quality_dat (iov_id, logic_id, "
38  "avg_chi2) "
39  "VALUES (:iov_id, :logic_id, "
40  ":avg_chi2)");
41  } catch (SQLException &e) {
42  throw(std::runtime_error(std::string("MonShapeQualityDat::prepareWrite(): ")+getOraMessage(&e)));
43  }
44 }
45 
46 
47 
49  noexcept(false)
50 {
51  this->checkConnection();
52  this->checkPrepare();
53 
54  int iovID = iov->fetchID();
55  if (!iovID) { throw(std::runtime_error("MonShapeQualityDat::writeDB: IOV not in DB")); }
56 
57  int logicID = ecid->getLogicID();
58  if (!logicID) { throw(std::runtime_error("MonShapeQualityDat::writeDB: Bad EcalLogicID")); }
59 
60  try {
61  m_writeStmt->setInt(1, iovID);
62  m_writeStmt->setInt(2, logicID);
63 
64  m_writeStmt->setFloat(3, item->getAvgChi2() );
65 
66  m_writeStmt->executeUpdate();
67  } catch (SQLException &e) {
68  throw(std::runtime_error(std::string("MonShapeQualityDat::writeDB(): ")+getOraMessage(&e)));
69  }
70 }
71 
72 
73 
74 void MonShapeQualityDat::fetchData(std::map< EcalLogicID, MonShapeQualityDat >* fillMap, MonRunIOV* iov)
75  noexcept(false)
76 {
77  this->checkConnection();
78  fillMap->clear();
79 
80  iov->setConnection(m_env, m_conn);
81  int iovID = iov->fetchID();
82  if (!iovID) {
83  // throw(std::runtime_error("MonShapeQualityDat::writeDB: IOV not in DB"));
84  return;
85  }
86 
87  try {
88 
89  m_readStmt->setSQL("SELECT cv.name, cv.logic_id, cv.id1, cv.id2, cv.id3, cv.maps_to, "
90  "d.avg_chi2 "
91  "FROM channelview cv JOIN mon_shape_quality_dat d "
92  "ON cv.logic_id = d.logic_id AND cv.name = cv.maps_to "
93  "WHERE d.iov_id = :iov_id");
94  m_readStmt->setInt(1, iovID);
95  ResultSet* rset = m_readStmt->executeQuery();
96 
97  std::pair< EcalLogicID, MonShapeQualityDat > p;
99  while(rset->next()) {
100  p.first = EcalLogicID( getOraString(rset,1), // name
101  rset->getInt(2), // logic_id
102  rset->getInt(3), // id1
103  rset->getInt(4), // id2
104  rset->getInt(5), // id3
105  getOraString(rset,6)); // maps_to
106 
107  dat.setAvgChi2( rset->getFloat(7) );
108 
109  p.second = dat;
110  fillMap->insert(p);
111  }
112  } catch (SQLException &e) {
113  throw(std::runtime_error(std::string("MonShapeQualityDat::fetchData(): ")+getOraMessage(&e)));
114  }
115 }
116 
117 void MonShapeQualityDat::writeArrayDB(const std::map< EcalLogicID, MonShapeQualityDat >* data, MonRunIOV* iov)
118  noexcept(false)
119 {
120  this->checkConnection();
121  this->checkPrepare();
122 
123  int iovID = iov->fetchID();
124  if (!iovID) { throw(std::runtime_error("MonShapeQualityDat::writeArrayDB: IOV not in DB")); }
125 
126 
127  int nrows=data->size();
128  int* ids= new int[nrows];
129  int* iovid_vec= new int[nrows];
130  float* xx= new float[nrows];
131 
132 
133  ub2* ids_len= new ub2[nrows];
134  ub2* iov_len= new ub2[nrows];
135  ub2* x_len= new ub2[nrows];
136 
137 
138  const EcalLogicID* channel;
139  const MonShapeQualityDat* dataitem;
140  int count=0;
141  typedef map< EcalLogicID, MonShapeQualityDat >::const_iterator CI;
142  for (CI p = data->begin(); p != data->end(); ++p) {
143  channel = &(p->first);
144  int logicID = channel->getLogicID();
145  if (!logicID) { throw(std::runtime_error("MonShapeQualityDat::writeArrayDB: Bad EcalLogicID")); }
146  ids[count]=logicID;
147  iovid_vec[count]=iovID;
148 
149  dataitem = &(p->second);
150  // dataIface.writeDB( channel, dataitem, iov);
151  float x=dataitem->getAvgChi2();
152 
153  xx[count]=x;
154 
155  ids_len[count]=sizeof(ids[count]);
156  iov_len[count]=sizeof(iovid_vec[count]);
157 
158  x_len[count]=sizeof(xx[count]);
159 
160  count++;
161  }
162 
163 
164  try {
165  m_writeStmt->setDataBuffer(1, (dvoid*)iovid_vec, OCCIINT, sizeof(iovid_vec[0]),iov_len);
166  m_writeStmt->setDataBuffer(2, (dvoid*)ids, OCCIINT, sizeof(ids[0]), ids_len );
167  m_writeStmt->setDataBuffer(3, (dvoid*)xx, OCCIFLOAT , sizeof(xx[0]), x_len );
168 
169  m_writeStmt->executeArrayUpdate(nrows);
170 
171  delete [] ids;
172  delete [] iovid_vec;
173  delete [] xx;
174 
175  delete [] ids_len;
176  delete [] iov_len;
177  delete [] x_len;
178 
179 
180  } catch (SQLException &e) {
181  throw(std::runtime_error(std::string("MonPedestalsDat::writeArrayDB(): ")+getOraMessage(&e)));
182  }
183 }
void prepareWrite() noexcept(false) override
#define noexcept
~MonShapeQualityDat() override
void setAvgChi2(float chi2)
void writeDB(const EcalLogicID *ecid, const MonShapeQualityDat *item, MonRunIOV *iov) noexcept(false)
void fetchData(std::map< EcalLogicID, MonShapeQualityDat > *fillVec, MonRunIOV *iov) noexcept(false)
int getLogicID() const
Definition: EcalLogicID.cc:41
void writeArrayDB(const std::map< EcalLogicID, MonShapeQualityDat > *data, MonRunIOV *iov) noexcept(false)
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:82
float getAvgChi2() const