CMS 3D CMS Logo

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

MODCCSTRDat Class Reference

#include <MODCCSTRDat.h>

Inheritance diagram for MODCCSTRDat:
IDataItem IDBObject

List of all members.

Public Member Functions

std::string getTable ()
int getWord () const
 MODCCSTRDat ()
void setWord (int x)
 ~MODCCSTRDat ()

Private Member Functions

void fetchData (std::map< EcalLogicID, MODCCSTRDat > *fillMap, MODRunIOV *iov) throw (std::runtime_error)
void prepareWrite () throw (std::runtime_error)
void writeArrayDB (const std::map< EcalLogicID, MODCCSTRDat > *data, MODRunIOV *iov) throw (std::runtime_error)
void writeDB (const EcalLogicID *ecid, const MODCCSTRDat *item, MODRunIOV *iov) throw (std::runtime_error)

Private Attributes

int m_word

Friends

class EcalCondDBInterface

Detailed Description

Definition at line 11 of file MODCCSTRDat.h.


Constructor & Destructor Documentation

MODCCSTRDat::MODCCSTRDat ( )

Definition at line 11 of file MODCCSTRDat.cc.

References NULL.

MODCCSTRDat::~MODCCSTRDat ( )

Definition at line 23 of file MODCCSTRDat.cc.

{
}

Member Function Documentation

void MODCCSTRDat::fetchData ( std::map< EcalLogicID, MODCCSTRDat > *  fillMap,
MODRunIOV iov 
) throw (std::runtime_error) [private]

Definition at line 72 of file MODCCSTRDat.cc.

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

{
  this->checkConnection();
  fillMap->clear();

  iov->setConnection(m_env, m_conn);
  int iovID = iov->fetchID();
  if (!iovID) { 
    //  throw(std::runtime_error("MODCCSTRDat::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.ccs_word " 
                 "FROM channelview cv JOIN OD_CCS_TR_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, MODCCSTRDat > p;
    MODCCSTRDat 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.setWord( rset->getInt(7) );

      p.second = dat;
      fillMap->insert(p);
    }
  } catch (SQLException &e) {
    throw(std::runtime_error("MODCCSTRDat::fetchData():  "+e.getMessage()));
  }
}
std::string MODCCSTRDat::getTable ( ) [inline, virtual]

Implements IDataItem.

Definition at line 18 of file MODCCSTRDat.h.

{ return "OD_CCS_TR_DAT"; }
int MODCCSTRDat::getWord ( ) const [inline]

Definition at line 21 of file MODCCSTRDat.h.

References m_word.

Referenced by writeArrayDB().

{ return m_word; }
void MODCCSTRDat::prepareWrite ( ) throw (std::runtime_error) [private, virtual]

Implements IDataItem.

Definition at line 29 of file MODCCSTRDat.cc.

References ExpressReco_HICollisions_FallBack::e.

{
  this->checkConnection();

  try {
    m_writeStmt = m_conn->createStatement();
    m_writeStmt->setSQL("INSERT INTO OD_CCS_TR_dat (iov_id, logic_id, "
                        "ccs_word) "
                        "VALUES (:iov_id, :logic_id, "
                        ":ccs_word)");
  } catch (SQLException &e) {
    throw(std::runtime_error("MODCCSTRDat::prepareWrite():  "+e.getMessage()));
  }
}
void MODCCSTRDat::setWord ( int  x) [inline]

Definition at line 20 of file MODCCSTRDat.h.

References m_word, and ExpressReco_HICollisions_FallBack::x.

Referenced by fetchData().

{ m_word = x; }
void MODCCSTRDat::writeArrayDB ( const std::map< EcalLogicID, MODCCSTRDat > *  data,
MODRunIOV iov 
) throw (std::runtime_error) [private]

Definition at line 115 of file MODCCSTRDat.cc.

References prof2calltree::count, runTheMatrix::data, ExpressReco_HICollisions_FallBack::e, EcalLogicID::getLogicID(), getWord(), o2o::iov, L1TEmulatorMonitor_cff::p, and ExpressReco_HICollisions_FallBack::x.

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

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


  int nrows=data->size(); 
  int* ids= new int[nrows];
  int* iovid_vec= new int[nrows];
  int* xx= new int[nrows];

  ub2* ids_len= new ub2[nrows];
  ub2* iov_len= new ub2[nrows];
  ub2* x_len= new ub2[nrows];

  const EcalLogicID* channel;
  const MODCCSTRDat* dataitem;
  int count=0;
  typedef map< EcalLogicID, MODCCSTRDat >::const_iterator CI;
  for (CI p = data->begin(); p != data->end(); ++p) {
        channel = &(p->first);
        int logicID = channel->getLogicID();
        if (!logicID) { throw(std::runtime_error("MODCCSTRDat::writeArrayDB:  Bad EcalLogicID")); }
        ids[count]=logicID;
        iovid_vec[count]=iovID;

        dataitem = &(p->second);
        // dataIface.writeDB( channel, dataitem, iov);
        int x=dataitem->getWord();

        xx[count]=x;

        ids_len[count]=sizeof(ids[count]);
        iov_len[count]=sizeof(iovid_vec[count]);
        
        x_len[count]=sizeof(xx[count]);

        count++;
     }


  try {
    m_writeStmt->setDataBuffer(1, (dvoid*)iovid_vec, OCCIINT, sizeof(iovid_vec[0]),iov_len);
    m_writeStmt->setDataBuffer(2, (dvoid*)ids, OCCIINT, sizeof(ids[0]), ids_len );
    m_writeStmt->setDataBuffer(3, (dvoid*)xx, OCCIINT , sizeof(xx[0]), x_len );

    m_writeStmt->executeArrayUpdate(nrows);

    delete [] ids;
    delete [] iovid_vec;
    delete [] xx;


    delete [] ids_len;
    delete [] iov_len;
    delete [] x_len;



  } catch (SQLException &e) {
    throw(std::runtime_error("MonPedestalsDat::writeArrayDB():  "+e.getMessage()));
  }
}
void MODCCSTRDat::writeDB ( const EcalLogicID ecid,
const MODCCSTRDat item,
MODRunIOV iov 
) throw (std::runtime_error) [private]

Definition at line 47 of file MODCCSTRDat.cc.

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

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

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

  int logicID = ecid->getLogicID();
  if (!logicID) { throw(std::runtime_error("MODCCSTRDat::writeDB:  Bad EcalLogicID")); }
  
  try {
    m_writeStmt->setInt(1, iovID);
    m_writeStmt->setInt(2, logicID);
    m_writeStmt->setFloat(3, item->getWord() );

    m_writeStmt->executeUpdate();
  } catch (SQLException &e) {
    throw(std::runtime_error("MODCCSTRDat::writeDB():  "+e.getMessage()));
  }
}

Friends And Related Function Documentation

friend class EcalCondDBInterface [friend]

Reimplemented from IDBObject.

Definition at line 13 of file MODCCSTRDat.h.


Member Data Documentation

int MODCCSTRDat::m_word [private]

Definition at line 39 of file MODCCSTRDat.h.

Referenced by getWord(), and setWord().