CMS 3D CMS Logo

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

RunPNErrorsDat Class Reference

#include <RunPNErrorsDat.h>

Inheritance diagram for RunPNErrorsDat:
IDataItem IDBObject

List of all members.

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

Detailed Description

Definition at line 12 of file RunPNErrorsDat.h.


Constructor & Destructor Documentation

RunPNErrorsDat::RunPNErrorsDat ( )

Definition at line 12 of file RunPNErrorsDat.cc.

References NULL.

RunPNErrorsDat::~RunPNErrorsDat ( )

Definition at line 24 of file RunPNErrorsDat.cc.

{
}

Member Function Documentation

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

Definition at line 22 of file RunPNErrorsDat.h.

References m_errorBits.

{ return m_errorBits; }
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.

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()));
  }
}

Friends And Related Function Documentation

friend class EcalCondDBInterface [friend]

Reimplemented from IDBObject.

Definition at line 14 of file RunPNErrorsDat.h.


Member Data Documentation

uint64_t RunPNErrorsDat::m_errorBits [private]

Definition at line 35 of file RunPNErrorsDat.h.

Referenced by getErrorBits(), and setErrorBits().