CMS 3D CMS Logo

Public Member Functions | Public Attributes | Private Attributes

popcon::RpcObGasData Class Reference

#include <RPCGasSH.h>

Inheritance diagram for popcon::RpcObGasData:
popcon::PopConSourceHandler< RPCObGas >

List of all members.

Public Member Functions

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

Public Attributes

RPCObGasGasdata
unsigned long long niov
unsigned long long snc
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 RPCGasSH.h.


Constructor & Destructor Documentation

popcon::RpcObGasData::~RpcObGasData ( )

Definition at line 24 of file RPCGasSH.cc.

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

Definition at line 15 of file RPCGasSH.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::RpcObGasData::getNewObjects ( ) [virtual]

Implements popcon::PopConSourceHandler< RPCObGas >.

Definition at line 28 of file RPCGasSH.cc.

References gather_cfg::cout, RPCFw::createGAS(), 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 << "===================  GAS   ==================" << 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<RPCObGas::Item> Gascheck;
   
   Gascheck = caen.createGAS(snc, m_till);
   Gasdata = new RPCObGas();
   RPCObGas::Item Ifill;
   std::vector<RPCObGas::Item>::iterator Iit;
   for(Iit = Gascheck.begin(); Iit != Gascheck.end(); Iit++)
     {
       Ifill = *(Iit);
       Gasdata->ObGas_rpc.push_back(Ifill);
     }
   std::cout << " >> Final object size: " << Gasdata->ObGas_rpc.size() << std::endl;
   
   
   if (Gasdata->ObGas_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((RPCObGas*)Gasdata,niov));
}
std::string popcon::RpcObGasData::id ( void  ) const [inline, virtual]

Implements popcon::PopConSourceHandler< RPCObGas >.

Definition at line 30 of file RPCGasSH.h.

References m_name.

{ return m_name;}

Member Data Documentation

Definition at line 34 of file RPCGasSH.h.

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

Definition at line 41 of file RPCGasSH.h.

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

Definition at line 40 of file RPCGasSH.h.

Referenced by id().

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

Definition at line 44 of file RPCGasSH.h.

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

Definition at line 45 of file RPCGasSH.h.

unsigned long long popcon::RpcObGasData::niov

Definition at line 37 of file RPCGasSH.h.

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

Definition at line 43 of file RPCGasSH.h.

unsigned long long popcon::RpcObGasData::snc

Definition at line 36 of file RPCGasSH.h.

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

Definition at line 42 of file RPCGasSH.h.

unsigned long long popcon::RpcObGasData::utime

Definition at line 38 of file RPCGasSH.h.