#include <FEConfigWeightDat.h>
Definition at line 11 of file FEConfigWeightDat.h.
◆ FEConfigWeightDat()
FEConfigWeightDat::FEConfigWeightDat |
( |
| ) |
|
Definition at line 11 of file FEConfigWeightDat.cc.
oracle::occi::Environment * m_env
oracle::occi::Statement * m_writeStmt
oracle::occi::Connection * m_conn
oracle::occi::Statement * m_readStmt
◆ ~FEConfigWeightDat()
FEConfigWeightDat::~FEConfigWeightDat |
( |
| ) |
|
|
override |
◆ fetchData()
Definition at line 64 of file FEConfigWeightDat.cc.
References MillePedeFileConverter_cfg::e, AlCaHLTBitMon_ParallelJobs::p, and setWeightGroupId().
78 "SELECT cv.name, cv.logic_id, cv.id1, cv.id2, cv.id3, cv.maps_to, " 80 "FROM channelview cv JOIN fe_config_weight_dat d " 81 "ON cv.logic_id = d.logic_id AND cv.name = cv.maps_to " 82 "WHERE wei_conf_id = :wei_conf_id");
86 std::pair<EcalLogicID, FEConfigWeightDat>
p;
88 while (rset->next()) {
101 }
catch (SQLException&
e) {
102 throw(std::runtime_error(
"FEConfigWeightDat::fetchData: " +
e.getMessage()));
oracle::occi::Environment * m_env
oracle::occi::Connection * m_conn
void checkConnection() const noexcept(false)
oracle::occi::Statement * m_readStmt
void setConnection(oracle::occi::Environment *env, oracle::occi::Connection *conn)
void setWeightGroupId(int x)
int fetchID() noexcept(false)
◆ getTable()
std::string FEConfigWeightDat::getTable |
( |
| ) |
|
|
inlineoverridevirtual |
◆ getWeightGroupId()
int FEConfigWeightDat::getWeightGroupId |
( |
| ) |
const |
|
inline |
◆ prepareWrite()
void FEConfigWeightDat::prepareWrite |
( |
| ) |
|
|
overrideprivatevirtualnoexcept |
Implements IDataItem.
Definition at line 22 of file FEConfigWeightDat.cc.
References MillePedeFileConverter_cfg::e.
28 "INSERT INTO fe_config_weight_dat (wei_conf_id, logic_id, " 30 "VALUES (:wei_conf_id, :logic_id, " 32 }
catch (SQLException&
e) {
33 throw(std::runtime_error(
"FEConfigWeightDat::prepareWrite(): " +
e.getMessage()));
oracle::occi::Statement * m_writeStmt
oracle::occi::Connection * m_conn
void checkConnection() const noexcept(false)
◆ setWeightGroupId()
void FEConfigWeightDat::setWeightGroupId |
( |
int |
x | ) |
|
|
inline |
◆ writeArrayDB()
Definition at line 106 of file FEConfigWeightDat.cc.
References submitPVResolutionJobs::count, data, MillePedeFileConverter_cfg::e, EcalLogicID::getLogicID(), getWeightGroupId(), AlCaHLTBitMon_ParallelJobs::p, x, and geometryCSVtoXML::xx.
111 int iconfID = iconf->
fetchID();
113 throw(std::runtime_error(
"FEConfigWeightDat::writeArrayDB: ICONF not in DB"));
116 int nrows =
data->size();
117 int* ids =
new int[nrows];
118 int* iconfid_vec =
new int[nrows];
119 int*
xx =
new int[nrows];
121 ub2* ids_len =
new ub2[nrows];
122 ub2* iconf_len =
new ub2[nrows];
123 ub2* x_len =
new ub2[nrows];
128 typedef map<EcalLogicID, FEConfigWeightDat>::const_iterator CI;
129 for (CI
p =
data->begin();
p !=
data->end(); ++
p) {
130 channel = &(
p->first);
133 throw(std::runtime_error(
"FEConfigWeightDat::writeArrayDB: Bad EcalLogicID"));
135 ids[
count] = logicID;
136 iconfid_vec[
count] = iconfID;
138 dataitem = &(
p->second);
145 iconf_len[
count] =
sizeof(iconfid_vec[
count]);
153 m_writeStmt->setDataBuffer(1, (dvoid*)iconfid_vec, OCCIINT,
sizeof(iconfid_vec[0]), iconf_len);
154 m_writeStmt->setDataBuffer(2, (dvoid*)ids, OCCIINT,
sizeof(ids[0]), ids_len);
155 m_writeStmt->setDataBuffer(3, (dvoid*)
xx, OCCIINT,
sizeof(
xx[0]), x_len);
160 delete[] iconfid_vec;
167 }
catch (SQLException&
e) {
168 throw(std::runtime_error(
"FEConfigWeightDat::writeArrayDB(): " +
e.getMessage()));
oracle::occi::Statement * m_writeStmt
void checkConnection() const noexcept(false)
int getWeightGroupId() const
void checkPrepare() noexcept(false)
char data[epos_bytes_allocation]
int fetchID() noexcept(false)
◆ writeDB()
Definition at line 37 of file FEConfigWeightDat.cc.
References MillePedeFileConverter_cfg::e, and B2GTnPMonitor_cfi::item.
45 throw(std::runtime_error(
"FEConfigWeightDat::writeDB: ICONF not in DB"));
50 throw(std::runtime_error(
"FEConfigWeightDat::writeDB: Bad EcalLogicID"));
59 }
catch (SQLException&
e) {
60 throw(std::runtime_error(
"FEConfigWeightDat::writeDB(): " +
e.getMessage()));
oracle::occi::Statement * m_writeStmt
void checkConnection() const noexcept(false)
void checkPrepare() noexcept(false)
int fetchID() noexcept(false)
◆ EcalCondDBInterface
◆ m_group_id
int FEConfigWeightDat::m_group_id |
|
private |