#include <DCUIDarkDat.h>
Definition at line 12 of file DCUIDarkDat.h.
◆ DCUIDarkDat()
DCUIDarkDat::DCUIDarkDat |
( |
| ) |
|
◆ ~DCUIDarkDat()
DCUIDarkDat::~DCUIDarkDat |
( |
| ) |
|
|
override |
◆ fetchData()
Definition at line 64 of file DCUIDarkDat.cc.
77 "SELECT cv.name, cv.logic_id, cv.id1, cv.id2, cv.id3, cv.maps_to, "
79 "FROM channelview cv JOIN dcu_idark_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, DCUIDarkDat>
p;
87 while (rset->next()) {
100 }
catch (SQLException&
e) {
101 throw(std::runtime_error(
"DCUIDarkDat::fetchData(): " +
e.getMessage()));
References MillePedeFileConverter_cfg::e, AlCaHLTBitMon_ParallelJobs::p, and setAPDIDark().
◆ getAPDIDark()
float DCUIDarkDat::getAPDIDark |
( |
| ) |
const |
|
inline |
◆ getTable()
std::string DCUIDarkDat::getTable |
( |
| ) |
|
|
inlineoverridevirtual |
◆ prepareWrite()
void DCUIDarkDat::prepareWrite |
( |
| ) |
|
|
overrideprivatevirtualnoexcept |
Implements IDataItem.
Definition at line 23 of file DCUIDarkDat.cc.
29 "INSERT INTO dcu_idark_dat (iov_id, logic_id, "
31 "VALUES (:iov_id, :logic_id, "
33 }
catch (SQLException&
e) {
34 throw(std::runtime_error(
"DCUIDarkDat::prepareWrite(): " +
e.getMessage()));
References MillePedeFileConverter_cfg::e.
◆ setAPDIDark()
void DCUIDarkDat::setAPDIDark |
( |
float |
i | ) |
|
|
inline |
◆ writeArrayDB()
Definition at line 104 of file DCUIDarkDat.cc.
110 throw(std::runtime_error(
"DCUIDarkDat::writeArrayDB: IOV not in DB"));
113 int nrows =
data->size();
114 int* ids =
new int[nrows];
115 int* iovid_vec =
new int[nrows];
116 float*
xx =
new float[nrows];
118 ub2* ids_len =
new ub2[nrows];
119 ub2* iov_len =
new ub2[nrows];
120 ub2* x_len =
new ub2[nrows];
125 typedef map<EcalLogicID, DCUIDarkDat>::const_iterator CI;
126 for (CI
p =
data->begin();
p !=
data->end(); ++
p) {
127 channel = &(
p->first);
130 throw(std::runtime_error(
"DCUIDarkDat::writeArrayDB: Bad EcalLogicID"));
132 ids[
count] = logicID;
133 iovid_vec[
count] = iovID;
135 dataitem = &(
p->second);
150 m_writeStmt->setDataBuffer(1, (dvoid*)iovid_vec, OCCIINT,
sizeof(iovid_vec[0]), iov_len);
151 m_writeStmt->setDataBuffer(2, (dvoid*)ids, OCCIINT,
sizeof(ids[0]), ids_len);
152 m_writeStmt->setDataBuffer(3, (dvoid*)
xx, OCCIFLOAT,
sizeof(
xx[0]), x_len);
164 }
catch (SQLException&
e) {
165 throw(std::runtime_error(
"DCUIDarkDat::writeArrayDB(): " +
e.getMessage()));
References submitPVResolutionJobs::count, data, MillePedeFileConverter_cfg::e, getAPDIDark(), EcalLogicID::getLogicID(), AlCaHLTBitMon_ParallelJobs::p, x, and geometryCSVtoXML::xx.
◆ writeDB()
Definition at line 38 of file DCUIDarkDat.cc.
44 throw(std::runtime_error(
"DCUIDarkDat::writeDB: IOV not in DB"));
49 throw(std::runtime_error(
"DCUIDarkDat::writeDB: Bad EcalLogicID"));
59 }
catch (SQLException&
e) {
60 throw(std::runtime_error(
"DCUIDarkDat::writeDB(): " +
e.getMessage()));
References MillePedeFileConverter_cfg::e, and B2GTnPMonitor_cfi::item.
◆ EcalCondDBInterface
◆ m_apdIDark
float DCUIDarkDat::m_apdIDark |
|
private |