CMS 3D CMS Logo

Public Member Functions | Public Attributes | Private Attributes

popcon::RpcDataT Class Reference

#include <RPCTempSH.h>

Inheritance diagram for popcon::RpcDataT:
popcon::PopConSourceHandler< RPCObTemp >

List of all members.

Public Member Functions

void getNewObjects ()
std::string id () const
 RpcDataT (const edm::ParameterSet &pset)
 ~RpcDataT ()

Public Attributes

unsigned long long niov
unsigned long long snc
RPCObTempTdata
unsigned long long utime

Private Attributes

std::string host
std::string m_name
unsigned long long m_since
unsigned long long m_till
std::string passw
std::string user

Detailed Description

Definition at line 27 of file RPCTempSH.h.


Constructor & Destructor Documentation

popcon::RpcDataT::~RpcDataT ( )

Definition at line 23 of file RPCTempSH.cc.

{
}
popcon::RpcDataT::RpcDataT ( const edm::ParameterSet pset)

Definition at line 14 of file RPCTempSH.cc.

                                                    :
  m_name(pset.getUntrackedParameter<std::string>("name","RpcData")),
  host(pset.getUntrackedParameter<std::string>("host", "source db host")),
  user(pset.getUntrackedParameter<std::string>("user", "source username")),
  passw(pset.getUntrackedParameter<std::string>("passw", "source password")),
  m_since(pset.getUntrackedParameter<unsigned long long>("since",5)),
  m_till(pset.getUntrackedParameter<unsigned long long>("till",0)){
}

Member Function Documentation

void popcon::RpcDataT::getNewObjects ( ) [virtual]

Implements popcon::PopConSourceHandler< RPCObTemp >.

Definition at line 27 of file RPCTempSH.cc.

References gather_cfg::cout, RPCFw::createT(), query::host, hcal_dqm_sourceclient-file_cfg::user, and edm::Timestamp::value().

                                   {
  
  std::cout << "------- " << m_name << " - > getNewObjects\n" 
            << "got offlineInfo "<< tagInfo().name 
            << ", size " << tagInfo().size << ", last object valid since " 
            << tagInfo().lastInterval.first << " token "   
            << tagInfo().lastPayloadToken << std::endl;
  
  std::cout << " ------ last entry info regarding the payload (if existing): " 
            << logDBEntry().usertext << "last record with the correct tag has been written in the db: "
            << logDBEntry().destinationDB << std::endl; 
  
  //  snc = tagInfo().lastInterval.first;
  
  std::cout << std::endl << "=============================================" << std::endl;
  std::cout << std::endl << "================  TEMPERATURE  ==============" << std::endl;
  std::cout << std::endl << "=============================================" << std::endl << std::endl;
  snc = m_since;
  std::cout << ">> Range mode [" << snc << ", " << m_till << "]" << std::endl;
  std::cout << std::endl << "=============================================" << std::endl << std::endl;
  
  
  RPCFw caen ( host, user, passw );
  std::vector<RPCObTemp::T_Item> Tcheck;
  
  
  Tcheck = caen.createT(snc, m_till);  
  Tdata = new RPCObTemp();
  RPCObTemp::T_Item Tfill;
  std::vector<RPCObTemp::T_Item>::iterator Tit;
  for(Tit = Tcheck.begin(); Tit != Tcheck.end(); Tit++)
    {
      Tfill = *(Tit);
      Tdata->ObTemp_rpc.push_back(Tfill);
    }
  std::cout << " >> Final object size: " << Tdata->ObTemp_rpc.size() << std::endl;
  
  if (Tdata->ObTemp_rpc.size() > 0) {
    niov = snc;
  } else {
    niov = snc;
    std::cout << "NO DATA TO BE STORED" << std::endl;
  }
  
  ::timeval tv;
  tv.tv_sec = niov;
  tv.tv_usec = 0;
  edm::Timestamp tmstamp((unsigned long long)tv.tv_sec*1000000+(unsigned long long)tv.tv_usec);
  std::cout << "UNIX time = " << tmstamp.value() << std::endl;
  
  edm::TimeValue_t daqtime=0LL;
  daqtime=tv.tv_sec;
  daqtime=(daqtime<<32)+tv.tv_usec;
  edm::Timestamp daqstamp(daqtime);
  edm::TimeValue_t dtime = daqstamp.value();
  std::cout<<"DAQ time = " << dtime <<std::endl;
  
  niov = dtime;
  
  std::cout << "===> New IOV: since is = " << niov << std::endl;
  
  m_to_transfer.push_back(std::make_pair((RPCObTemp*)Tdata,niov));
}
std::string popcon::RpcDataT::id ( void  ) const [inline, virtual]

Implements popcon::PopConSourceHandler< RPCObTemp >.

Definition at line 30 of file RPCTempSH.h.

References m_name.

{ return m_name;}

Member Data Documentation

std::string popcon::RpcDataT::host [private]

Definition at line 41 of file RPCTempSH.h.

std::string popcon::RpcDataT::m_name [private]

Definition at line 40 of file RPCTempSH.h.

Referenced by id().

unsigned long long popcon::RpcDataT::m_since [private]

Definition at line 44 of file RPCTempSH.h.

unsigned long long popcon::RpcDataT::m_till [private]

Definition at line 45 of file RPCTempSH.h.

unsigned long long popcon::RpcDataT::niov

Definition at line 37 of file RPCTempSH.h.

std::string popcon::RpcDataT::passw [private]

Definition at line 43 of file RPCTempSH.h.

unsigned long long popcon::RpcDataT::snc

Definition at line 36 of file RPCTempSH.h.

Definition at line 34 of file RPCTempSH.h.

std::string popcon::RpcDataT::user [private]

Definition at line 42 of file RPCTempSH.h.

unsigned long long popcon::RpcDataT::utime

Definition at line 38 of file RPCTempSH.h.