10 using namespace oracle::occi;
39 throw(std::runtime_error)
41 this->checkConnection();
44 m_writeStmt = m_conn->createStatement();
45 m_writeStmt->setSQL(
"INSERT INTO mon_pn_blue_dat (iov_id, logic_id, "
46 "adc_mean_g1, adc_rms_g1, adc_mean_g16, adc_rms_g16, ped_mean_g1, ped_rms_g1, ped_mean_g16, ped_rms_g16, task_status) "
47 "VALUES (:iov_id, :logic_id, "
48 ":3, :4, :5, :6, :7, :8, :9, :10, :11)");
50 throw(std::runtime_error(
"MonPNBlueDat::prepareWrite(): "+e.getMessage()));
57 throw(std::runtime_error)
59 this->checkConnection();
62 int iovID =
iov->fetchID();
63 if (!iovID) {
throw(std::runtime_error(
"MonPNBlueDat::writeDB: IOV not in DB")); }
65 int logicID = ecid->getLogicID();
66 if (!logicID) {
throw(std::runtime_error(
"MonPNBlueDat::writeDB: Bad EcalLogicID")); }
69 m_writeStmt->setInt(1, iovID);
70 m_writeStmt->setInt(2, logicID);
72 m_writeStmt->setFloat(3, item->getADCMeanG1() );
73 m_writeStmt->setFloat(4, item->getADCRMSG1() );
74 m_writeStmt->setFloat(5, item->getADCMeanG16() );
75 m_writeStmt->setFloat(6, item->getADCRMSG16() );
76 m_writeStmt->setFloat(7, item->getPedMeanG1() );
77 m_writeStmt->setFloat(8, item->getPedRMSG1() );
78 m_writeStmt->setFloat(9, item->getPedMeanG16() );
79 m_writeStmt->setFloat(10, item->getPedRMSG16() );
80 m_writeStmt->setInt(11, item->getTaskStatus() );
82 m_writeStmt->executeUpdate();
84 throw(std::runtime_error(
"MonPNBlueDat::writeDB(): "+e.getMessage()));
91 throw(std::runtime_error)
93 this->checkConnection();
96 iov->setConnection(m_env, m_conn);
97 int iovID =
iov->fetchID();
105 m_readStmt->setSQL(
"SELECT cv.name, cv.logic_id, cv.id1, cv.id2, cv.id3, cv.maps_to, "
106 "d.adc_mean_g1, d.adc_rms_g1, d.adc_mean_g16, d.adc_rms_g16, d.ped_mean_g1,d.ped_rms_g1, d.ped_mean_g16, d.ped_rms_g16, d.task_status "
107 "FROM channelview cv JOIN mon_pn_blue_dat d "
108 "ON cv.logic_id = d.logic_id AND cv.name = cv.maps_to "
109 "WHERE d.iov_id = :iov_id");
110 m_readStmt->setInt(1, iovID);
111 ResultSet* rset = m_readStmt->executeQuery();
113 std::pair< EcalLogicID, MonPNBlueDat >
p;
115 while(rset->next()) {
136 throw(std::runtime_error(
"MonPNBlueDat::fetchData(): "+e.getMessage()));
141 throw(std::runtime_error)
143 this->checkConnection();
144 this->checkPrepare();
146 int iovID =
iov->fetchID();
147 if (!iovID) {
throw(std::runtime_error(
"MonPNBlueDat::writeArrayDB: IOV not in DB")); }
150 int nrows=
data->size();
151 int* ids=
new int[nrows];
152 int* iovid_vec=
new int[nrows];
153 float* xx=
new float[nrows];
154 float* yy=
new float[nrows];
155 float* zz=
new float[nrows];
156 float* ww=
new float[nrows];
157 float* uu=
new float[nrows];
158 float*
tt=
new float[nrows];
159 float*
rr=
new float[nrows];
160 float*
pp=
new float[nrows];
161 int* st=
new int[nrows];
163 ub2* ids_len=
new ub2[nrows];
164 ub2* iov_len=
new ub2[nrows];
165 ub2* x_len=
new ub2[nrows];
166 ub2* y_len=
new ub2[nrows];
167 ub2* z_len=
new ub2[nrows];
168 ub2* w_len=
new ub2[nrows];
169 ub2* u_len=
new ub2[nrows];
170 ub2* t_len=
new ub2[nrows];
171 ub2* r_len=
new ub2[nrows];
172 ub2* p_len=
new ub2[nrows];
173 ub2* st_len=
new ub2[nrows];
178 typedef map< EcalLogicID, MonPNBlueDat >::const_iterator CI;
179 for (CI
p =
data->begin();
p !=
data->end(); ++
p) {
180 channel = &(
p->first);
182 if (!logicID) {
throw(std::runtime_error(
"MonPNBlueDat::writeArrayDB: Bad EcalLogicID")); }
184 iovid_vec[
count]=iovID;
186 dataitem = &(
p->second);
229 m_writeStmt->setDataBuffer(1, (dvoid*)iovid_vec, OCCIINT,
sizeof(iovid_vec[0]),iov_len);
230 m_writeStmt->setDataBuffer(2, (dvoid*)ids, OCCIINT,
sizeof(ids[0]), ids_len );
231 m_writeStmt->setDataBuffer(3, (dvoid*)xx, OCCIFLOAT ,
sizeof(xx[0]), x_len );
232 m_writeStmt->setDataBuffer(4, (dvoid*)yy, OCCIFLOAT ,
sizeof(yy[0]), y_len );
233 m_writeStmt->setDataBuffer(5, (dvoid*)zz, OCCIFLOAT ,
sizeof(zz[0]), z_len );
234 m_writeStmt->setDataBuffer(6, (dvoid*)ww, OCCIFLOAT ,
sizeof(ww[0]), w_len );
235 m_writeStmt->setDataBuffer(7, (dvoid*)uu, OCCIFLOAT ,
sizeof(uu[0]), u_len );
236 m_writeStmt->setDataBuffer(8, (dvoid*)tt, OCCIFLOAT ,
sizeof(tt[0]), t_len );
237 m_writeStmt->setDataBuffer(9, (dvoid*)rr, OCCIFLOAT ,
sizeof(rr[0]), r_len );
238 m_writeStmt->setDataBuffer(10, (dvoid*)pp, OCCIFLOAT ,
sizeof(pp[0]), p_len );
239 m_writeStmt->setDataBuffer(11, (dvoid*)st, OCCIINT ,
sizeof(st[0]), st_len );
242 m_writeStmt->executeArrayUpdate(nrows);
271 throw(std::runtime_error(
"MonPNBlueDat::writeArrayDB(): "+e.getMessage()));
void setADCMeanG1(float mean)
void setADCRMSG16(float mean)
void setADCMeanG16(float mean)
float getADCMeanG16() const
bool getTaskStatus() const
void setPedRMSG16(float mean)
void setTaskStatus(bool status)
oracle::occi::SQLException SQLException
float getPedMeanG1() const
void setPedMeanG1(float mean)
float getADCRMSG16() const
void setPedRMSG1(float mean)
void writeDB(const EcalLogicID *ecid, const MonPNBlueDat *item, MonRunIOV *iov)
void setADCRMSG1(float mean)
float getPedMeanG16() const
float getADCMeanG1() const
oracle::occi::ResultSet ResultSet
float getADCRMSG1() const
void setPedMeanG16(float mean)
char data[epos_bytes_allocation]
float getPedRMSG16() const
void fetchData(std::map< EcalLogicID, MonPNBlueDat > *fillVec, MonRunIOV *iov)
void writeArrayDB(const std::map< EcalLogicID, MonPNBlueDat > *data, MonRunIOV *iov)
float getPedRMSG1() const