16 m_writeStmt =
nullptr;
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, " 41 }
catch (SQLException &
e) {
42 throw(std::runtime_error(
std::string(
"MonShapeQualityDat::prepareWrite(): ")+getOraMessage(&e)));
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();
67 }
catch (SQLException &
e) {
68 throw(std::runtime_error(
std::string(
"MonShapeQualityDat::writeDB(): ")+getOraMessage(&e)));
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;
105 getOraString(rset,6));
112 }
catch (SQLException &
e) {
113 throw(std::runtime_error(
std::string(
"MonShapeQualityDat::fetchData(): ")+getOraMessage(&e)));
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);
180 }
catch (SQLException &
e) {
181 throw(std::runtime_error(
std::string(
"MonPedestalsDat::writeArrayDB(): ")+getOraMessage(&e)));
void prepareWrite() noexcept(false) override
~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)
void writeArrayDB(const std::map< EcalLogicID, MonShapeQualityDat > *data, MonRunIOV *iov) noexcept(false)
char data[epos_bytes_allocation]