#include <DCUCapsuleTempDat.h>
Definition at line 12 of file DCUCapsuleTempDat.h.
◆ DCUCapsuleTempDat()
DCUCapsuleTempDat::DCUCapsuleTempDat |
( |
| ) |
|
Definition at line 12 of file DCUCapsuleTempDat.cc.
oracle::occi::Environment * m_env
oracle::occi::Statement * m_writeStmt
oracle::occi::Connection * m_conn
oracle::occi::Statement * m_readStmt
◆ ~DCUCapsuleTempDat()
DCUCapsuleTempDat::~DCUCapsuleTempDat |
( |
| ) |
|
|
override |
◆ fetchData()
Definition at line 64 of file DCUCapsuleTempDat.cc.
References MillePedeFileConverter_cfg::e, AlCaHLTBitMon_ParallelJobs::p, and setCapsuleTemp().
77 "SELECT cv.name, cv.logic_id, cv.id1, cv.id2, cv.id3, cv.maps_to, " 79 "FROM channelview cv JOIN dcu_capsule_temp_dat d " 80 "ON cv.logic_id = d.logic_id AND cv.name = cv.maps_to " 81 "WHERE d.iov_id = :iov_id");
85 std::pair<EcalLogicID, DCUCapsuleTempDat>
p;
87 while (rset->next()) {
100 }
catch (SQLException&
e) {
101 throw(std::runtime_error(
"DCUCapsuleTempDat::fetchData(): " +
e.getMessage()));
oracle::occi::Environment * m_env
oracle::occi::Connection * m_conn
void checkConnection() const noexcept(false)
oracle::occi::Statement * m_readStmt
int fetchID() noexcept(false) override
void setConnection(oracle::occi::Environment *env, oracle::occi::Connection *conn)
void setCapsuleTemp(float temp)
◆ getCapsuleTemp()
float DCUCapsuleTempDat::getCapsuleTemp |
( |
| ) |
const |
|
inline |
◆ getTable()
std::string DCUCapsuleTempDat::getTable |
( |
| ) |
|
|
inlineoverridevirtual |
◆ prepareWrite()
void DCUCapsuleTempDat::prepareWrite |
( |
| ) |
|
|
overrideprivatevirtualnoexcept |
Implements IDataItem.
Definition at line 23 of file DCUCapsuleTempDat.cc.
References MillePedeFileConverter_cfg::e.
29 "INSERT INTO dcu_capsule_temp_dat (iov_id, logic_id, " 31 "VALUES (:iov_id, :logic_id, " 33 }
catch (SQLException&
e) {
34 throw(std::runtime_error(
"DCUCapsuleTempDat::prepareWrite(): " +
e.getMessage()));
oracle::occi::Statement * m_writeStmt
oracle::occi::Connection * m_conn
void checkConnection() const noexcept(false)
◆ setCapsuleTemp()
void DCUCapsuleTempDat::setCapsuleTemp |
( |
float |
temp | ) |
|
|
inline |
◆ writeArrayDB()
Definition at line 104 of file DCUCapsuleTempDat.cc.
References submitPVResolutionJobs::count, data, MillePedeFileConverter_cfg::e, getCapsuleTemp(), EcalLogicID::getLogicID(), AlCaHLTBitMon_ParallelJobs::p, x, and geometryCSVtoXML::xx.
111 throw(std::runtime_error(
"DCUCapsuleTempDat::writeArrayDB: IOV not in DB"));
114 int nrows =
data->size();
115 int* ids =
new int[nrows];
116 int* iovid_vec =
new int[nrows];
117 float*
xx =
new float[nrows];
119 ub2* ids_len =
new ub2[nrows];
120 ub2* iov_len =
new ub2[nrows];
121 ub2* x_len =
new ub2[nrows];
126 typedef map<EcalLogicID, DCUCapsuleTempDat>::const_iterator CI;
127 for (CI
p =
data->begin();
p !=
data->end(); ++
p) {
128 channel = &(
p->first);
131 throw(std::runtime_error(
"DCUCapsuleTempDat::writeArrayDB: Bad EcalLogicID"));
133 ids[
count] = logicID;
134 iovid_vec[
count] = iovID;
136 dataitem = &(
p->second);
151 m_writeStmt->setDataBuffer(1, (dvoid*)iovid_vec, OCCIINT,
sizeof(iovid_vec[0]), iov_len);
152 m_writeStmt->setDataBuffer(2, (dvoid*)ids, OCCIINT,
sizeof(ids[0]), ids_len);
153 m_writeStmt->setDataBuffer(3, (dvoid*)
xx, OCCIFLOAT,
sizeof(
xx[0]), x_len);
165 }
catch (SQLException&
e) {
166 throw(std::runtime_error(
"DCUCapsuleTempDat::writeArrayDB(): " +
e.getMessage()));
oracle::occi::Statement * m_writeStmt
void checkConnection() const noexcept(false)
void checkPrepare() noexcept(false)
int fetchID() noexcept(false) override
char data[epos_bytes_allocation]
float getCapsuleTemp() const
◆ writeDB()
Definition at line 38 of file DCUCapsuleTempDat.cc.
References MillePedeFileConverter_cfg::e, and B2GTnPMonitor_cfi::item.
44 throw(std::runtime_error(
"DCUCapsuleTempDat::writeDB: IOV not in DB"));
49 throw(std::runtime_error(
"DCUCapsuleTempDat::writeDB: Bad EcalLogicID"));
59 }
catch (SQLException&
e) {
60 throw(std::runtime_error(
"DCUCapsuleTempDat::writeDB(): " +
e.getMessage()));
oracle::occi::Statement * m_writeStmt
void checkConnection() const noexcept(false)
void checkPrepare() noexcept(false)
int fetchID() noexcept(false) override
◆ EcalCondDBInterface
◆ m_capsuleTemp
float DCUCapsuleTempDat::m_capsuleTemp |
|
private |