#include <DCUVFETempDat.h>
Definition at line 12 of file DCUVFETempDat.h.
DCUVFETempDat::DCUVFETempDat |
( |
| ) |
|
Definition at line 12 of file DCUVFETempDat.cc.
References NULL.
oracle::occi::Environment * m_env
oracle::occi::Statement * m_writeStmt
oracle::occi::Connection * m_conn
oracle::occi::Statement * m_readStmt
DCUVFETempDat::~DCUVFETempDat |
( |
| ) |
|
Definition at line 74 of file DCUVFETempDat.cc.
References alignCSCRings::e, edm::pset::fillMap(), o2o::iov, AlCaHLTBitMon_ParallelJobs::p, and setVFETemp().
89 m_readStmt->setSQL(
"SELECT cv.name, cv.logic_id, cv.id1, cv.id2, cv.id3, cv.maps_to, "
91 "FROM channelview cv JOIN dcu_vfe_temp_dat d "
92 "ON cv.logic_id = d.logic_id AND cv.name = cv.maps_to "
93 "WHERE d.iov_id = :iov_id");
97 std::pair< EcalLogicID, DCUVFETempDat >
p;
113 throw(std::runtime_error(
"DCUVFETempDat::fetchData(): "+e.getMessage()));
oracle::occi::Environment * m_env
oracle::occi::Connection * m_conn
oracle::occi::SQLException SQLException
oracle::occi::Statement * m_readStmt
oracle::occi::ResultSet ResultSet
void setConnection(oracle::occi::Environment *env, oracle::occi::Connection *conn)
void fillMap(Registry *reg, regmap_type &fillme)
void setVFETemp(float temp)
void checkConnection() const
std::string DCUVFETempDat::getTable |
( |
| ) |
|
|
inlinevirtual |
float DCUVFETempDat::getVFETemp |
( |
| ) |
const |
|
inline |
void DCUVFETempDat::prepareWrite |
( |
| ) |
|
throw | ( | std::runtime_error |
| ) | | |
|
privatevirtual |
Implements IDataItem.
Definition at line 30 of file DCUVFETempDat.cc.
References alignCSCRings::e.
37 m_writeStmt->setSQL(
"INSERT INTO dcu_vfe_temp_dat (iov_id, logic_id, "
39 "VALUES (:iov_id, :logic_id, "
42 throw(std::runtime_error(
"DCUVFETempDat::prepareWrite(): "+e.getMessage()));
oracle::occi::Statement * m_writeStmt
oracle::occi::Connection * m_conn
oracle::occi::SQLException SQLException
void checkConnection() const
void DCUVFETempDat::setVFETemp |
( |
float |
temp | ) |
|
|
inline |
Definition at line 117 of file DCUVFETempDat.cc.
References prof2calltree::count, data, alignCSCRings::e, EcalLogicID::getLogicID(), getVFETemp(), o2o::iov, AlCaHLTBitMon_ParallelJobs::p, and x.
124 if (!iovID) {
throw(std::runtime_error(
"DCUVFETempDat::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];
132 ub2* ids_len=
new ub2[nrows];
133 ub2* iov_len=
new ub2[nrows];
134 ub2* x_len=
new ub2[nrows];
139 typedef map< EcalLogicID, DCUVFETempDat >::const_iterator CI;
140 for (CI
p =
data->begin();
p !=
data->end(); ++
p) {
141 channel = &(
p->first);
143 if (!logicID) {
throw(std::runtime_error(
"DCUVFETempDat::writeArrayDB: Bad EcalLogicID")); }
145 iovid_vec[
count]=iovID;
147 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 );
182 throw(std::runtime_error(
"DCUVFETempDat::writeArrayDB(): "+e.getMessage()));
oracle::occi::Statement * m_writeStmt
oracle::occi::SQLException SQLException
char data[epos_bytes_allocation]
void checkConnection() const
Definition at line 48 of file DCUVFETempDat.cc.
References alignCSCRings::e, and o2o::iov.
55 if (!iovID) {
throw(std::runtime_error(
"DCUVFETempDat::writeDB: IOV not in DB")); }
58 if (!logicID) {
throw(std::runtime_error(
"DCUVFETempDat::writeDB: Bad EcalLogicID")); }
68 throw(std::runtime_error(
"DCUVFETempDat::writeDB(): "+e.getMessage()));
oracle::occi::Statement * m_writeStmt
oracle::occi::SQLException SQLException
void checkConnection() const
float DCUVFETempDat::m_vfeTemp |
|
private |