CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_10_patch1/src/CondTools/RPC/src/RPCGasSH.cc

Go to the documentation of this file.
00001 /*
00002  *  See headers for a description
00003  *
00004  *  \author D. Pagano - Dip. Fis. Nucl. e Teo. & INFN Pavia
00005  */
00006 
00007 #include "CondTools/RPC/interface/RPCGasSH.h"
00008 #include "FWCore/ServiceRegistry/interface/Service.h"
00009 #include "CondCore/DBOutputService/interface/PoolDBOutputService.h"
00010 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00011 #include <sys/time.h>
00012 #include "DataFormats/Provenance/interface/Timestamp.h"
00013 #include<iostream>
00014 
00015 popcon::RpcObGasData::RpcObGasData(const edm::ParameterSet& pset) :
00016   m_name(pset.getUntrackedParameter<std::string>("name","RpcData")),
00017   host(pset.getUntrackedParameter<std::string>("host", "source db host")),
00018   user(pset.getUntrackedParameter<std::string>("user", "source username")),
00019   passw(pset.getUntrackedParameter<std::string>("passw", "source password")),
00020   m_since(pset.getUntrackedParameter<unsigned long long>("since",5)),
00021   m_till(pset.getUntrackedParameter<unsigned long long>("till",0)){
00022 }
00023 
00024 popcon::RpcObGasData::~RpcObGasData()
00025 {
00026 }
00027 
00028 void popcon::RpcObGasData::getNewObjects() {
00029 
00030   std::cout << "------- " << m_name << " - > getNewObjects\n" 
00031             << "got offlineInfo "<< tagInfo().name 
00032             << ", size " << tagInfo().size << ", last object valid since " 
00033             << tagInfo().lastInterval.first << " token "   
00034             << tagInfo().lastPayloadToken << std::endl;
00035 
00036   std::cout << " ------ last entry info regarding the payload (if existing): " 
00037             << logDBEntry().usertext << "last record with the correct tag has been written in the db: "
00038             << logDBEntry().destinationDB << std::endl; 
00039   
00040   //  snc = tagInfo().lastInterval.first;
00041 
00042    std::cout << std::endl << "=============================================" << std::endl;
00043    std::cout << std::endl << "===================  GAS   ==================" << std::endl;
00044    std::cout << std::endl << "=============================================" << std::endl << std::endl;
00045    snc = m_since;
00046    std::cout << ">> Range mode [" << snc << ", " << m_till << "]" << std::endl;
00047    std::cout << std::endl << "=============================================" << std::endl << std::endl;
00048    
00049    RPCFw caen ( host, user, passw );
00050    std::vector<RPCObGas::Item> Gascheck;
00051    
00052    Gascheck = caen.createGAS(snc, m_till);
00053    Gasdata = new RPCObGas();
00054    RPCObGas::Item Ifill;
00055    std::vector<RPCObGas::Item>::iterator Iit;
00056    for(Iit = Gascheck.begin(); Iit != Gascheck.end(); Iit++)
00057      {
00058        Ifill = *(Iit);
00059        Gasdata->ObGas_rpc.push_back(Ifill);
00060      }
00061    std::cout << " >> Final object size: " << Gasdata->ObGas_rpc.size() << std::endl;
00062    
00063    
00064    if (Gasdata->ObGas_rpc.size() > 0) {
00065      niov = snc;
00066    } else {
00067      niov = snc;
00068      std::cout << "NO DATA TO BE STORED" << std::endl;
00069    }
00070    
00071    ::timeval tv;
00072    tv.tv_sec = niov;
00073    tv.tv_usec = 0;
00074    edm::Timestamp tmstamp((unsigned long long)tv.tv_sec*1000000+(unsigned long long)tv.tv_usec);
00075    std::cout << "UNIX time = " << tmstamp.value() << std::endl;
00076 
00077    edm::TimeValue_t daqtime=0LL;
00078    daqtime=tv.tv_sec;
00079    daqtime=(daqtime<<32)+tv.tv_usec;
00080    edm::Timestamp daqstamp(daqtime);
00081    edm::TimeValue_t dtime = daqstamp.value();
00082    std::cout<<"DAQ time = " << dtime <<std::endl;
00083 
00084    niov = dtime;
00085 
00086    std::cout << "===> New IOV: since is = " << niov << std::endl;
00087    m_to_transfer.push_back(std::make_pair((RPCObGas*)Gasdata,niov));
00088 }