CMS 3D CMS Logo

Public Member Functions | Public Attributes | Private Attributes

popcon::RpcDataS Class Reference

#include <RPCStatusSH.h>

Inheritance diagram for popcon::RpcDataS:
popcon::PopConSourceHandler< RPCObStatus >

List of all members.

Public Member Functions

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

Public Attributes

unsigned long long niov
RPCObStatusSdata
unsigned long long snc
unsigned long long tll
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 RPCStatusSH.h.


Constructor & Destructor Documentation

popcon::RpcDataS::~RpcDataS ( )

Definition at line 23 of file RPCStatusSH.cc.

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

Definition at line 14 of file RPCStatusSH.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::RpcDataS::getNewObjects ( ) [virtual]

Implements popcon::PopConSourceHandler< RPCObStatus >.

Definition at line 27 of file RPCStatusSH.cc.

References gather_cfg::cout, RPCFw::createSTATUS(), 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 << "==================  STATUS  =================" << 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<RPCObStatus::S_Item> Scheck;
   

   Scheck = caen.createSTATUS(snc, m_till);
   Sdata = new RPCObStatus();
   RPCObStatus::S_Item Sfill;
   std::vector<RPCObStatus::S_Item>::iterator Sit;
   for(Sit = Scheck.begin(); Sit != Scheck.end(); Sit++)
     {
      Sfill = *(Sit);
      Sdata->ObStatus_rpc.push_back(Sfill);
     }
   std::cout << " >> Final object size: " << Sdata->ObStatus_rpc.size() << std::endl;
   
   if (Sdata->ObStatus_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((RPCObStatus*)Sdata,niov));
}
std::string popcon::RpcDataS::id ( void  ) const [inline, virtual]

Implements popcon::PopConSourceHandler< RPCObStatus >.

Definition at line 30 of file RPCStatusSH.h.

References m_name.

{ return m_name;}

Member Data Documentation

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

Definition at line 42 of file RPCStatusSH.h.

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

Definition at line 41 of file RPCStatusSH.h.

Referenced by id().

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

Definition at line 45 of file RPCStatusSH.h.

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

Definition at line 46 of file RPCStatusSH.h.

unsigned long long popcon::RpcDataS::niov

Definition at line 38 of file RPCStatusSH.h.

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

Definition at line 44 of file RPCStatusSH.h.

Definition at line 34 of file RPCStatusSH.h.

unsigned long long popcon::RpcDataS::snc

Definition at line 36 of file RPCStatusSH.h.

unsigned long long popcon::RpcDataS::tll

Definition at line 37 of file RPCStatusSH.h.

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

Definition at line 43 of file RPCStatusSH.h.

unsigned long long popcon::RpcDataS::utime

Definition at line 39 of file RPCStatusSH.h.