CMS 3D CMS Logo

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

CaliGeneralDat Class Reference

#include <CaliGeneralDat.h>

Inheritance diagram for CaliGeneralDat:
IDataItem IDBObject

List of all members.

Public Member Functions

 CaliGeneralDat ()
std::string getComments () const
int getNumEvents () const
std::string getTable ()
void setComments (std::string comments)
void setNumEvents (int n)
 ~CaliGeneralDat ()

Private Member Functions

void fetchData (std::map< EcalLogicID, CaliGeneralDat > *fillVec, CaliIOV *iov) throw (std::runtime_error)
void prepareWrite () throw (std::runtime_error)
void writeDB (const EcalLogicID *ecid, const CaliGeneralDat *item, CaliIOV *iov) throw (std::runtime_error)

Private Attributes

std::string m_comments
int m_numEvents

Friends

class EcalCondDBInterface

Detailed Description

Definition at line 12 of file CaliGeneralDat.h.


Constructor & Destructor Documentation

CaliGeneralDat::CaliGeneralDat ( )

Definition at line 12 of file CaliGeneralDat.cc.

References NULL.

CaliGeneralDat::~CaliGeneralDat ( )

Definition at line 24 of file CaliGeneralDat.cc.

{
}

Member Function Documentation

void CaliGeneralDat::fetchData ( std::map< EcalLogicID, CaliGeneralDat > *  fillVec,
CaliIOV iov 
) throw (std::runtime_error) [private]

Definition at line 75 of file CaliGeneralDat.cc.

References ExpressReco_HICollisions_FallBack::e, edm::pset::fillMap(), o2o::iov, L1TEmulatorMonitor_cff::p, setComments(), and setNumEvents().

{
  this->checkConnection();
  fillMap->clear();
  
  iov->setConnection(m_env, m_conn);
  int iovID = iov->fetchID();
  if (!iovID) { 
    //  throw(std::runtime_error("CaliGeneralDat::writeDB:  IOV not in DB")); 
    return;
  }
  
  try {

    m_readStmt->setSQL("SELECT cv.name, cv.logic_id, cv.id1, cv.id2, cv.id3, cv.maps_to, "
                 "d.num_events, d.comments "
                 "FROM channelview cv JOIN cali_general_dat d "
                 "ON cv.logic_id = d.logic_id AND cv.name = cv.maps_to "
                 "WHERE d.iov_id = :iov_id");
    m_readStmt->setInt(1, iovID);
    ResultSet* rset = m_readStmt->executeQuery();
    
    std::pair< EcalLogicID, CaliGeneralDat > p;
    CaliGeneralDat dat;
    while(rset->next()) {
      p.first = EcalLogicID( rset->getString(1),     // name
                             rset->getInt(2),        // logic_id
                             rset->getInt(3),        // id1
                             rset->getInt(4),        // id2
                             rset->getInt(5),        // id3
                             rset->getString(6));    // maps_to
      
      dat.setNumEvents( rset->getInt(7) );
      dat.setComments( rset->getString(8) );
      
      p.second = dat;
      fillMap->insert(p);
    }
  } catch (SQLException &e) {
    throw(std::runtime_error("CaliGeneralDat::fetchData():  "+e.getMessage()));
  }
}
std::string CaliGeneralDat::getComments ( ) const [inline]

Definition at line 25 of file CaliGeneralDat.h.

References m_comments.

{ return m_comments; }
int CaliGeneralDat::getNumEvents ( ) const [inline]

Definition at line 22 of file CaliGeneralDat.h.

References m_numEvents.

{ return m_numEvents; }
std::string CaliGeneralDat::getTable ( ) [inline, virtual]

Implements IDataItem.

Definition at line 19 of file CaliGeneralDat.h.

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

Implements IDataItem.

Definition at line 30 of file CaliGeneralDat.cc.

References ExpressReco_HICollisions_FallBack::e.

{
  this->checkConnection();
  
  try {
    m_writeStmt = m_conn->createStatement();
    m_writeStmt->setSQL("INSERT INTO cali_general_dat (iov_id, logic_id, "
                        "num_events, comments) "
                        "VALUES (:iov_id, :logic_id, "
                        ":3, :4)");
  } catch (SQLException &e) {
    throw(std::runtime_error("CaliGeneralDat::prepareWrite():  "+e.getMessage()));
  }
}
void CaliGeneralDat::setComments ( std::string  comments) [inline]

Definition at line 24 of file CaliGeneralDat.h.

References indexGen::comments, and m_comments.

Referenced by fetchData().

void CaliGeneralDat::setNumEvents ( int  n) [inline]

Definition at line 21 of file CaliGeneralDat.h.

References m_numEvents, and n.

Referenced by fetchData().

{ m_numEvents = n; }
void CaliGeneralDat::writeDB ( const EcalLogicID ecid,
const CaliGeneralDat item,
CaliIOV iov 
) throw (std::runtime_error) [private]

Definition at line 48 of file CaliGeneralDat.cc.

References ExpressReco_HICollisions_FallBack::e, and o2o::iov.

{
  this->checkConnection();
  this->checkPrepare();
  
  int iovID = iov->fetchID();
  if (!iovID) { throw(std::runtime_error("CaliGeneralDat::writeDB:  IOV not in DB")); }
  
  int logicID = ecid->getLogicID();
  if (!logicID) { throw(std::runtime_error("CaliGeneralDat::writeDB:  Bad EcalLogicID")); }
  
  try {
    m_writeStmt->setInt(1, iovID);
    m_writeStmt->setInt(2, logicID);
    
    m_writeStmt->setInt(3, item->getNumEvents() );
    m_writeStmt->setString(4, item->getComments() );
    
    m_writeStmt->executeUpdate();
  } catch (SQLException &e) {
    throw(std::runtime_error("CaliGeneralDat::writeDB():  "+e.getMessage()));
  }
}

Friends And Related Function Documentation

friend class EcalCondDBInterface [friend]

Reimplemented from IDBObject.

Definition at line 14 of file CaliGeneralDat.h.


Member Data Documentation

std::string CaliGeneralDat::m_comments [private]

Definition at line 39 of file CaliGeneralDat.h.

Referenced by getComments(), and setComments().

Definition at line 38 of file CaliGeneralDat.h.

Referenced by getNumEvents(), and setNumEvents().