CMS 3D CMS Logo

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

CaliIOV Class Reference

#include <CaliIOV.h>

Inheritance diagram for CaliIOV:
IIOV IUniqueDBObject IDBObject

List of all members.

Public Member Functions

 CaliIOV ()
int fetchID () throw (std::runtime_error)
CaliTag getCaliTag () const
int getID ()
Tm getSince () const
Tm getTill () const
bool operator!= (const CaliIOV &m) const
bool operator== (const CaliIOV &m) const
void setByID (int id) throw (std::runtime_error)
void setCaliTag (CaliTag tag)
void setSince (Tm since)
void setTill (Tm till)
 ~CaliIOV ()

Private Member Functions

void setByTm (CaliTag *tag, Tm time) throw (std::runtime_error)
int writeDB () throw (std::runtime_error)

Private Attributes

CaliTag m_caliTag
Tm m_since
Tm m_till

Friends

class EcalCondDBInterface

Detailed Description

Definition at line 13 of file CaliIOV.h.


Constructor & Destructor Documentation

CaliIOV::CaliIOV ( )

Definition at line 12 of file CaliIOV.cc.

References NULL.

{
  m_conn = NULL;
  m_ID = 0;
  m_since = Tm();
  m_till = Tm();
}
CaliIOV::~CaliIOV ( )

Definition at line 22 of file CaliIOV.cc.

{
}

Member Function Documentation

int CaliIOV::fetchID ( ) throw (std::runtime_error) [virtual]

Implements IUniqueDBObject.

Definition at line 79 of file CaliIOV.cc.

References alignCSCRings::e, DateHandler::getPlusInfTm(), and DateHandler::tmToDate().

{
  // Return from memory if available
  if (m_ID) {
    return m_ID;
  }

  this->checkConnection();

  m_caliTag.setConnection(m_env, m_conn);
  int tagID = m_caliTag.fetchID();
  if (!tagID) { 
    return 0;
  }

  DateHandler dh(m_env, m_conn);

  if (m_till.isNull()) {
    m_till = dh.getPlusInfTm();
  }

  try {
    Statement* stmt = m_conn->createStatement();
    stmt->setSQL("SELECT iov_id FROM cali_iov "
                 "WHERE tag_id = :tag_id AND "
                 "since = :since AND "
                 "till = :till");
    stmt->setInt(1, tagID);
    stmt->setDate(2, dh.tmToDate(m_since));
    stmt->setDate(3, dh.tmToDate(m_till));
  
    ResultSet* rset = stmt->executeQuery();

    if (rset->next()) {
      m_ID = rset->getInt(1);
    } else {
      m_ID = 0;
    }
    m_conn->terminateStatement(stmt);
  } catch (SQLException &e) {
    throw(std::runtime_error("CaliIOV::fetchID:  "+e.getMessage()));
  }

  return m_ID;
}
CaliTag CaliIOV::getCaliTag ( ) const

Definition at line 72 of file CaliIOV.cc.

{
  return m_caliTag;
}
int CaliIOV::getID ( ) [inline]

Definition at line 31 of file CaliIOV.h.

References IUniqueDBObject::m_ID.

{ return m_ID;} ;
Tm CaliIOV::getSince ( ) const

Definition at line 38 of file CaliIOV.cc.

{
  return m_since;
}
Tm CaliIOV::getTill ( ) const

Definition at line 55 of file CaliIOV.cc.

{
  return m_till;
}
bool CaliIOV::operator!= ( const CaliIOV m) const [inline]

Definition at line 43 of file CaliIOV.h.

References m.

{ return !(*this == m); }
bool CaliIOV::operator== ( const CaliIOV m) const [inline]

Definition at line 36 of file CaliIOV.h.

References m_caliTag, m_since, and m_till.

    {
      return ( m_caliTag   == m.m_caliTag &&
               m_since == m.m_since &&
               m_till   == m.m_till );
    }
void CaliIOV::setByID ( int  id) throw (std::runtime_error) [virtual]

Implements IUniqueDBObject.

Definition at line 128 of file CaliIOV.cc.

References DateHandler::dateToTm(), alignCSCRings::e, and errorMatrix2Lands_multiChannel::id.

{
   this->checkConnection();

   DateHandler dh(m_env, m_conn);

   try {
     Statement* stmt = m_conn->createStatement();

     stmt->setSQL("SELECT tag_id, since, till FROM cali_iov WHERE iov_id = :1");
     stmt->setInt(1, id);
     
     ResultSet* rset = stmt->executeQuery();
     if (rset->next()) {
       int tagID = rset->getInt(1);
       Date since = rset->getDate(2);
       Date till = rset->getDate(3);
         
       m_since = dh.dateToTm( since );
       m_till = dh.dateToTm( till );

       m_caliTag.setConnection(m_env, m_conn);
       m_caliTag.setByID(tagID);
       m_ID = id;
     } else {
       throw(std::runtime_error("CaliTag::setByID:  Given tag_id is not in the database"));
     }
     
     m_conn->terminateStatement(stmt);
   } catch (SQLException &e) {
     throw(std::runtime_error("CaliTag::setByID:  "+e.getMessage()));
   }
}
void CaliIOV::setByTm ( CaliTag tag,
Tm  time 
) throw (std::runtime_error) [private]

Definition at line 215 of file CaliIOV.cc.

References DateHandler::dateToTm(), alignCSCRings::e, GlobalPosition_Frontier_DevDB_cff::tag, and DateHandler::tmToDate().

Referenced by EcalCondDBInterface::fetchCaliIOV().

{
  this->checkConnection();
  
  tag->setConnection(m_env, m_conn);
  int tagID = tag->fetchID();
  
  if (!tagID) {
    throw(std::runtime_error("CaliIOV::setByTm:  Given CaliTag does not exist in the DB"));
  }

  DateHandler dh(m_env, m_conn);

  Date eventDate = dh.tmToDate(eventTm);

  try {
    Statement* stmt = m_conn->createStatement();


    stmt->setSQL("SELECT iov_id, since, till FROM cali_iov "
                 "WHERE tag_id = :1 AND since <= :2 AND till > :3");
    stmt->setInt(1, tagID);
    stmt->setDate(2, eventDate);
    stmt->setDate(3, eventDate);

    ResultSet* rset = stmt->executeQuery();
    if (rset->next()) {
      m_caliTag = *tag;
      
      m_ID = rset->getInt(1);
      Date sinceDate = rset->getDate(2);
      Date tillDate = rset->getDate(3);
         
      m_since = dh.dateToTm( sinceDate );
      m_till = dh.dateToTm( tillDate );
    } else {
      throw(std::runtime_error("CaliIOV::setByTm:  Given subrun is not in the database"));
    }
     
    m_conn->terminateStatement(stmt);
  } catch (SQLException &e) {
    throw(std::runtime_error("CaliIOV::setByTm:  "+e.getMessage()));
  }
}
void CaliIOV::setCaliTag ( CaliTag  tag)

Definition at line 62 of file CaliIOV.cc.

References GlobalPosition_Frontier_DevDB_cff::tag.

{
  if (tag != m_caliTag) {
    m_ID = 0;
    m_caliTag = tag;
  }
}
void CaliIOV::setSince ( Tm  since)

Definition at line 28 of file CaliIOV.cc.

{
  if (since != m_since) {
    m_ID = 0;
    m_since = since;
  }
}
void CaliIOV::setTill ( Tm  till)

Definition at line 45 of file CaliIOV.cc.

{
  if (till != m_till) {
    m_ID = 0;
    m_till = till;
  }
}
int CaliIOV::writeDB ( ) throw (std::runtime_error) [private]

Definition at line 165 of file CaliIOV.cc.

References alignCSCRings::e, DateHandler::getPlusInfTm(), and DateHandler::tmToDate().

{
  this->checkConnection();

  // Check if this IOV has already been written
  if (this->fetchID()) {
    return m_ID;
  }

  m_caliTag.setConnection(m_env, m_conn);
  int tagID = m_caliTag.writeDB();
  
  // Validate the data, use infinity-till convention
  DateHandler dh(m_env, m_conn);

  if (m_since.isNull()) {
    throw(std::runtime_error("CaliIOV::writeDB:  Must setSince before writing"));
  }
  
  if (m_till.isNull()) {
    m_till = dh.getPlusInfTm();
  }

  try {
    Statement* stmt = m_conn->createStatement();
    
    stmt->setSQL("INSERT INTO cali_iov (iov_id, tag_id, since, till) "
                 "VALUES (cali_iov_sq.NextVal, :1, :2, :3)");
    stmt->setInt(1, tagID);
    stmt->setDate(2, dh.tmToDate(m_since));
    stmt->setDate(3, dh.tmToDate(m_till));

    stmt->executeUpdate();

    m_conn->terminateStatement(stmt);
  } catch (SQLException &e) {
    throw(std::runtime_error("CaliIOV::writeDB:  "+e.getMessage()));
  }

  // Now get the ID
  if (!this->fetchID()) {
    throw(std::runtime_error("CaliIOV::writeDB:  Failed to write"));
  }
  
  return m_ID;
}

Friends And Related Function Documentation

friend class EcalCondDBInterface [friend]

Reimplemented from IDBObject.

Definition at line 15 of file CaliIOV.h.


Member Data Documentation

Definition at line 50 of file CaliIOV.h.

Referenced by operator==().

Tm CaliIOV::m_since [private]

Definition at line 48 of file CaliIOV.h.

Referenced by operator==().

Tm CaliIOV::m_till [private]

Definition at line 49 of file CaliIOV.h.

Referenced by operator==().