10 using namespace oracle::occi;
31 throw(std::runtime_error)
33 this->checkConnection();
36 m_writeStmt = m_conn->createStatement();
37 m_writeStmt->setSQL(
"INSERT INTO mon_shape_quality_dat (iov_id, logic_id, "
39 "VALUES (:iov_id, :logic_id, "
42 throw(std::runtime_error(
"MonShapeQualityDat::prepareWrite(): "+e.getMessage()));
49 throw(std::runtime_error)
51 this->checkConnection();
54 int iovID =
iov->fetchID();
55 if (!iovID) {
throw(std::runtime_error(
"MonShapeQualityDat::writeDB: IOV not in DB")); }
57 int logicID = ecid->getLogicID();
58 if (!logicID) {
throw(std::runtime_error(
"MonShapeQualityDat::writeDB: Bad EcalLogicID")); }
61 m_writeStmt->setInt(1, iovID);
62 m_writeStmt->setInt(2, logicID);
64 m_writeStmt->setFloat(3, item->getAvgChi2() );
66 m_writeStmt->executeUpdate();
68 throw(std::runtime_error(
"MonShapeQualityDat::writeDB(): "+e.getMessage()));
75 throw(std::runtime_error)
77 this->checkConnection();
80 iov->setConnection(m_env, m_conn);
81 int iovID =
iov->fetchID();
89 m_readStmt->setSQL(
"SELECT cv.name, cv.logic_id, cv.id1, cv.id2, cv.id3, cv.maps_to, "
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();
97 std::pair< EcalLogicID, MonShapeQualityDat >
p;
113 throw(std::runtime_error(
"MonShapeQualityDat::fetchData(): "+e.getMessage()));
118 throw(std::runtime_error)
120 this->checkConnection();
121 this->checkPrepare();
123 int iovID =
iov->fetchID();
124 if (!iovID) {
throw(std::runtime_error(
"MonShapeQualityDat::writeArrayDB: IOV not in DB")); }
127 int nrows=
data->size();
128 int* ids=
new int[nrows];
129 int* iovid_vec=
new int[nrows];
130 float* xx=
new float[nrows];
133 ub2* ids_len=
new ub2[nrows];
134 ub2* iov_len=
new ub2[nrows];
135 ub2* x_len=
new ub2[nrows];
141 typedef map< EcalLogicID, MonShapeQualityDat >::const_iterator CI;
142 for (CI
p =
data->begin();
p !=
data->end(); ++
p) {
143 channel = &(
p->first);
145 if (!logicID) {
throw(std::runtime_error(
"MonShapeQualityDat::writeArrayDB: Bad EcalLogicID")); }
147 iovid_vec[
count]=iovID;
149 dataitem = &(
p->second);
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 );
169 m_writeStmt->executeArrayUpdate(nrows);
181 throw(std::runtime_error(
"MonPedestalsDat::writeArrayDB(): "+e.getMessage()));
void writeDB(const EcalLogicID *ecid, const MonShapeQualityDat *item, MonRunIOV *iov)
void writeArrayDB(const std::map< EcalLogicID, MonShapeQualityDat > *data, MonRunIOV *iov)
oracle::occi::SQLException SQLException
void setAvgChi2(float chi2)
void fetchData(std::map< EcalLogicID, MonShapeQualityDat > *fillVec, MonRunIOV *iov)
oracle::occi::ResultSet ResultSet
char data[epos_bytes_allocation]