#include <RunPNErrorsDat.h>
Public Member Functions | |
uint64_t | getErrorBits () const |
std::string | getTable () |
RunPNErrorsDat () | |
void | setErrorBits (uint64_t bits) |
~RunPNErrorsDat () | |
Private Member Functions | |
void | fetchData (std::map< EcalLogicID, RunPNErrorsDat > *fillMap, RunIOV *iov) throw (std::runtime_error) |
void | prepareWrite () throw (std::runtime_error) |
void | writeDB (const EcalLogicID *ecid, const RunPNErrorsDat *item, RunIOV *iov) throw (std::runtime_error) |
Private Attributes | |
uint64_t | m_errorBits |
Friends | |
class | EcalCondDBInterface |
Definition at line 12 of file RunPNErrorsDat.h.
RunPNErrorsDat::RunPNErrorsDat | ( | ) |
Definition at line 12 of file RunPNErrorsDat.cc.
References NULL.
{ m_env = NULL; m_conn = NULL; m_writeStmt = NULL; m_readStmt = NULL; m_errorBits = 0; }
RunPNErrorsDat::~RunPNErrorsDat | ( | ) |
Definition at line 24 of file RunPNErrorsDat.cc.
{ }
void RunPNErrorsDat::fetchData | ( | std::map< EcalLogicID, RunPNErrorsDat > * | fillMap, |
RunIOV * | iov | ||
) | throw (std::runtime_error) [private] |
uint64_t RunPNErrorsDat::getErrorBits | ( | ) | const [inline] |
std::string RunPNErrorsDat::getTable | ( | ) | [inline, virtual] |
Implements IDataItem.
Definition at line 19 of file RunPNErrorsDat.h.
{ return "RUN_PN_ERRORS_DAT"; }
void RunPNErrorsDat::prepareWrite | ( | ) | throw (std::runtime_error) [private, virtual] |
Implements IDataItem.
Definition at line 30 of file RunPNErrorsDat.cc.
References ExpressReco_HICollisions_FallBack::e.
{ this->checkConnection(); try { m_writeStmt = m_conn->createStatement(); /* Using TO_NUMBER because OCCI does not support 64-bit integers well */ m_writeStmt->setSQL("INSERT INTO run_pn_errors_dat (iov_id, logic_id, " "error_bits) " "VALUES (:iov_id, :logic_id, " "to_number(:error_bits))"); } catch (SQLException &e) { throw(std::runtime_error("RunPNErrorsDat::prepareWrite(): "+e.getMessage())); } }
void RunPNErrorsDat::setErrorBits | ( | uint64_t | bits | ) | [inline] |
Definition at line 21 of file RunPNErrorsDat.h.
References bits, and m_errorBits.
{ m_errorBits = bits; }
void RunPNErrorsDat::writeDB | ( | const EcalLogicID * | ecid, |
const RunPNErrorsDat * | item, | ||
RunIOV * | iov | ||
) | throw (std::runtime_error) [private] |
Definition at line 49 of file RunPNErrorsDat.cc.
References ExpressReco_HICollisions_FallBack::e, and o2o::iov.
{ this->checkConnection(); this->checkPrepare(); int iovID = iov->fetchID(); if (!iovID) { throw(std::runtime_error("RunPNErrorsDat::writeDB: IOV not in DB")); } int logicID = ecid->getLogicID(); if (!logicID) { throw(std::runtime_error("RunPNErrorsDat::writeDB: Bad EcalLogicID")); } try { m_writeStmt->setInt(1, iovID); m_writeStmt->setInt(2, logicID); m_writeStmt->setString(3, ( boost::lexical_cast<std::string>(item->getErrorBits()) ).c_str()); m_writeStmt->executeUpdate(); } catch (SQLException &e) { throw(std::runtime_error("RunPNErrorsDat::writeDB(): "+e.getMessage())); } }
friend class EcalCondDBInterface [friend] |
Reimplemented from IDBObject.
Definition at line 14 of file RunPNErrorsDat.h.
uint64_t RunPNErrorsDat::m_errorBits [private] |
Definition at line 35 of file RunPNErrorsDat.h.
Referenced by getErrorBits(), and setErrorBits().