CMS 3D CMS Logo

Public Member Functions | Private Member Functions | Private Attributes | Friends

RunMemChErrorsDat Class Reference

#include <RunMemChErrorsDat.h>

Inheritance diagram for RunMemChErrorsDat:
IDataItem IDBObject

List of all members.

Public Member Functions

uint64_t getErrorBits () const
std::string getTable ()
 RunMemChErrorsDat ()
void setErrorBits (uint64_t bits)
 ~RunMemChErrorsDat ()

Private Member Functions

void fetchData (std::map< EcalLogicID, RunMemChErrorsDat > *fillMap, RunIOV *iov) throw (std::runtime_error)
void prepareWrite () throw (std::runtime_error)
void writeDB (const EcalLogicID *ecid, const RunMemChErrorsDat *item, RunIOV *iov) throw (std::runtime_error)

Private Attributes

uint64_t m_errorBits

Friends

class EcalCondDBInterface

Detailed Description

Definition at line 12 of file RunMemChErrorsDat.h.


Constructor & Destructor Documentation

RunMemChErrorsDat::RunMemChErrorsDat ( )

Definition at line 12 of file RunMemChErrorsDat.cc.

References NULL.

RunMemChErrorsDat::~RunMemChErrorsDat ( )

Definition at line 23 of file RunMemChErrorsDat.cc.

{
}

Member Function Documentation

void RunMemChErrorsDat::fetchData ( std::map< EcalLogicID, RunMemChErrorsDat > *  fillMap,
RunIOV iov 
) throw (std::runtime_error) [private]
uint64_t RunMemChErrorsDat::getErrorBits ( ) const [inline]

Definition at line 22 of file RunMemChErrorsDat.h.

References m_errorBits.

{ return m_errorBits; }
std::string RunMemChErrorsDat::getTable ( ) [inline, virtual]

Implements IDataItem.

Definition at line 19 of file RunMemChErrorsDat.h.

{ return "RUN_MEM_CH_ERRORS_DAT"; }
void RunMemChErrorsDat::prepareWrite ( ) throw (std::runtime_error) [private, virtual]

Implements IDataItem.

Definition at line 29 of file RunMemChErrorsDat.cc.

{
  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_mem_ch_errors_dat (iov_id, logic_id, "
                        "error_bits) "
                        "VALUES (:iov_id, :logic_id, "
                        "to_number(:error_bits))");
  } catch (SQLException &e) {
    throw(std::runtime_error("RunMemChErrorsDat::prepareWrite():  "+e.getMessage()));
  }
}
void RunMemChErrorsDat::setErrorBits ( uint64_t  bits) [inline]

Definition at line 21 of file RunMemChErrorsDat.h.

References bits, and m_errorBits.

void RunMemChErrorsDat::writeDB ( const EcalLogicID ecid,
const RunMemChErrorsDat item,
RunIOV iov 
) throw (std::runtime_error) [private]

Definition at line 48 of file RunMemChErrorsDat.cc.

References o2o::iov.

{
  this->checkConnection();
  this->checkPrepare();

  int iovID = iov->fetchID();
  if (!iovID) { throw(std::runtime_error("RunMemChErrorsDat::writeDB:  IOV not in DB")); }

  int logicID = ecid->getLogicID();
  if (!logicID) { throw(std::runtime_error("RunMemChErrorsDat::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("RunMemChErrorsDat::writeDB():  "+e.getMessage()));
  }
}

Friends And Related Function Documentation

friend class EcalCondDBInterface [friend]

Reimplemented from IDBObject.

Definition at line 14 of file RunMemChErrorsDat.h.


Member Data Documentation

uint64_t RunMemChErrorsDat::m_errorBits [private]

Definition at line 35 of file RunMemChErrorsDat.h.

Referenced by getErrorBits(), and setErrorBits().