#include <FEConfigPedInfo.h>
Definition at line 11 of file FEConfigPedInfo.h.
◆ FEConfigPedInfo()
FEConfigPedInfo::FEConfigPedInfo |
( |
| ) |
|
◆ ~FEConfigPedInfo()
FEConfigPedInfo::~FEConfigPedInfo |
( |
| ) |
|
|
override |
◆ clear()
void FEConfigPedInfo::clear |
( |
void |
| ) |
|
|
private |
◆ fetchData()
Definition at line 105 of file FEConfigPedInfo.cc.
References cuy::dh, MillePedeFileConverter_cfg::e, mps_fire::result, and AlCaHLTBitMon_QueryRunRegistry::string.
108 if (
result->getId() == 0 && (
result->getConfigTag().empty())) {
109 throw(std::runtime_error(
"FEConfigPedInfo::fetchData(): no Id defined for this FEConfigPedInfo "));
115 m_readStmt->setSQL(
"SELECT * FROM " +
getTable() +
" where ( ped_conf_id= :1 or (tag=:2 AND version=:3 ) )");
125 result->setId(rset->getInt(1));
126 result->setConfigTag(rset->getString(2));
127 result->setVersion(rset->getInt(3));
128 result->setIOVId(rset->getInt(4));
129 Date dbdate = rset->getDate(5);
130 result->setDBTime(
dh.dateToTm(dbdate));
133 throw(std::runtime_error(
std::string(
"FEConfigPedInfo::fetchData(): ") +
e.getMessage()));
oracle::occi::Environment * m_env
oracle::occi::Connection * m_conn
void checkConnection() const noexcept(false)
oracle::occi::SQLException SQLException
std::string getTable() override
◆ fetchID()
int FEConfigPedInfo::fetchID |
( |
| ) |
|
|
noexcept |
Definition at line 161 of file FEConfigPedInfo.cc.
References MillePedeFileConverter_cfg::e, and AlCaHLTBitMon_QueryRunRegistry::string.
171 stmt->setSQL(
"SELECT ped_conf_id FROM " +
getTable() +
" WHERE tag=:1 and version=:2 ");
176 ResultSet* rset = stmt->executeQuery();
179 m_ID = rset->getInt(1);
183 m_conn->terminateStatement(stmt);
185 throw(std::runtime_error(
std::string(
"FEConfigPedInfo::fetchID: ") +
e.getMessage()));
oracle::occi::Connection * m_conn
void checkConnection() const noexcept(false)
oracle::occi::Statement Statement
oracle::occi::SQLException SQLException
std::string getConfigTag()
std::string getTable() override
◆ fetchLastData()
◆ fetchNextId()
int FEConfigPedInfo::fetchNextId |
( |
| ) |
|
|
noexcept |
◆ getDBTime()
Tm FEConfigPedInfo::getDBTime |
( |
| ) |
const |
|
inline |
◆ getId()
int FEConfigPedInfo::getId |
( |
void |
| ) |
const |
|
inline |
◆ getID()
int FEConfigPedInfo::getID |
( |
| ) |
|
|
inline |
◆ getIOVId()
int FEConfigPedInfo::getIOVId |
( |
| ) |
const |
|
inline |
◆ getTable()
std::string FEConfigPedInfo::getTable |
( |
| ) |
|
|
inlineoverridevirtual |
◆ getVersion()
int FEConfigPedInfo::getVersion |
( |
| ) |
const |
|
inline |
◆ operator!=()
◆ operator==()
◆ prepareWrite()
void FEConfigPedInfo::prepareWrite |
( |
| ) |
|
|
overrideprivatevirtualnoexcept |
◆ setByID()
void FEConfigPedInfo::setByID |
( |
int |
id | ) |
|
|
noexcept |
Definition at line 191 of file FEConfigPedInfo.cc.
References cuy::dh, MillePedeFileConverter_cfg::e, and AlCaHLTBitMon_QueryRunRegistry::string.
199 stmt->setSQL(
"SELECT * FROM fe_config_ped_info WHERE ped_conf_id = :1");
202 ResultSet* rset = stmt->executeQuery();
204 this->
setId(rset->getInt(1));
208 Date dbdate = rset->getDate(5);
211 throw(std::runtime_error(
"FEConfigPedInfo::setByID: Given config_id is not in the database"));
214 m_conn->terminateStatement(stmt);
216 throw(std::runtime_error(
std::string(
"FEConfigPedInfo::setByID: ") +
e.getMessage()));
oracle::occi::Environment * m_env
oracle::occi::Connection * m_conn
void setDBTime(const Tm &x)
void checkConnection() const noexcept(false)
void setIOVId(int iov_id)
oracle::occi::Statement Statement
void setConfigTag(std::string x)
oracle::occi::SQLException SQLException
◆ setDBTime()
void FEConfigPedInfo::setDBTime |
( |
const Tm & |
x | ) |
|
|
inline |
◆ setId()
void FEConfigPedInfo::setId |
( |
int |
id | ) |
|
|
inline |
◆ setID()
void FEConfigPedInfo::setID |
( |
int |
id | ) |
|
|
inline |
◆ setIOVId()
void FEConfigPedInfo::setIOVId |
( |
int |
iov_id | ) |
|
|
inline |
◆ setParameters()
void FEConfigPedInfo::setParameters |
( |
const std::map< std::string, std::string > & |
my_keys_map | ) |
|
Definition at line 70 of file FEConfigPedInfo.cc.
74 for (std::map<std::string, std::string>::const_iterator ci = my_keys_map.begin(); ci != my_keys_map.end(); ci++) {
75 if (ci->first ==
"VERSION")
77 if (ci->first ==
"TAG")
79 if (ci->first ==
"IOV_ID")
void setIOVId(int iov_id)
void setConfigTag(std::string x)
◆ setVersion()
void FEConfigPedInfo::setVersion |
( |
int |
id | ) |
|
|
inline |
◆ writeDB()
void FEConfigPedInfo::writeDB |
( |
| ) |
|
|
privatenoexcept |
◆ EcalCondDBInterface
◆ m_db_time
Tm FEConfigPedInfo::m_db_time |
|
private |
◆ m_ID
int FEConfigPedInfo::m_ID |
|
private |
◆ m_iov_id
int FEConfigPedInfo::m_iov_id |
|
private |
◆ m_version
int FEConfigPedInfo::m_version |
|
private |