CMS 3D CMS Logo

List of all members | Public Member Functions | Public Attributes | Private Attributes
popcon::RpcObGasData Class Reference

#include <RPCGasSH.h>

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

Public Member Functions

void getNewObjects () override
 
std::string id () const override
 
 RpcObGasData (const edm::ParameterSet &pset)
 
 ~RpcObGasData () override
 
- Public Member Functions inherited from popcon::PopConSourceHandler< RPCObGas >
void convertFromOld ()
 
SummarydummySummary (typename OldContainer::value_type const &) const
 
void initialize (const cond::persistency::Session &dbSession, cond::TagInfo_t const &tagInfo, cond::LogDBEntry_t const &logDBEntry)
 
Ref lastPayload () const
 
cond::LogDBEntry_t const & logDBEntry () const
 
std::pair< Container const *, std::string const > operator() (const cond::persistency::Session &session, cond::TagInfo_t const &tagInfo, cond::LogDBEntry_t const &logDBEntry) const
 
 PopConSourceHandler ()
 
Container const & returnData ()
 
void sort ()
 
cond::TagInfo_t const & tagInfo () const
 
std::string const & userTextLog () const
 
virtual ~PopConSourceHandler ()
 

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
 

Additional Inherited Members

- Public Types inherited from popcon::PopConSourceHandler< RPCObGas >
typedef std::vector< Triplet > Container
 
typedef std::vector< std::pair< RPCObGas *, cond::Time_t > > OldContainer
 
typedef PopConSourceHandler< RPCObGasself
 
typedef cond::Summary Summary
 
typedef cond::Time_t Time_t
 
typedef RPCObGas value_type
 
- Protected Member Functions inherited from popcon::PopConSourceHandler< RPCObGas >
int add (value_type *payload, Summary *summary, Time_t time)
 
cond::persistency::SessiondbSession () const
 
- Protected Attributes inherited from popcon::PopConSourceHandler< RPCObGas >
OldContainer m_to_transfer
 
std::string m_userTextLog
 

Detailed Description

Definition at line 27 of file RPCGasSH.h.

Constructor & Destructor Documentation

popcon::RpcObGasData::~RpcObGasData ( )
override

Definition at line 24 of file RPCGasSH.cc.

Referenced by id().

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

Definition at line 15 of file RPCGasSH.cc.

Referenced by id().

15  :
16  m_name(pset.getUntrackedParameter<std::string>("name","RpcData")),
17  host(pset.getUntrackedParameter<std::string>("host", "source db host")),
18  user(pset.getUntrackedParameter<std::string>("user", "source username")),
19  passw(pset.getUntrackedParameter<std::string>("passw", "source password")),
20  m_since(pset.getUntrackedParameter<unsigned long long>("since",5)),
21  m_till(pset.getUntrackedParameter<unsigned long long>("till",0)){
22 }
T getUntrackedParameter(std::string const &, T const &) const
unsigned long long m_since
Definition: RPCGasSH.h:44
std::string host
Definition: RPCGasSH.h:41
std::string m_name
Definition: RPCGasSH.h:40
std::string user
Definition: RPCGasSH.h:42
std::string passw
Definition: RPCGasSH.h:43
unsigned long long m_till
Definition: RPCGasSH.h:45

Member Function Documentation

void popcon::RpcObGasData::getNewObjects ( )
overridevirtual

Implements popcon::PopConSourceHandler< RPCObGas >.

Definition at line 28 of file RPCGasSH.cc.

References gather_cfg::cout, RPCFw::createGAS(), cond::LogDBEntry_t::destinationDB, Gasdata, host, cond::TagInfo_t::lastInterval, cond::TagInfo_t::lastPayloadToken, popcon::PopConSourceHandler< RPCObGas >::logDBEntry(), m_name, m_since, m_till, popcon::PopConSourceHandler< RPCObGas >::m_to_transfer, cond::TagInfo_t::name, niov, RPCObGas::ObGas_rpc, passw, cond::TagInfo_t::size, snc, popcon::PopConSourceHandler< RPCObGas >::tagInfo(), user, cond::LogDBEntry_t::usertext, and edm::Timestamp::value().

28  {
29 
30  std::cout << "------- " << m_name << " - > getNewObjects\n"
31  << "got offlineInfo "<< tagInfo().name
32  << ", size " << tagInfo().size << ", last object valid since "
33  << tagInfo().lastInterval.first << " token "
34  << tagInfo().lastPayloadToken << std::endl;
35 
36  std::cout << " ------ last entry info regarding the payload (if existing): "
37  << logDBEntry().usertext << "last record with the correct tag has been written in the db: "
38  << logDBEntry().destinationDB << std::endl;
39 
40  // snc = tagInfo().lastInterval.first;
41 
42  std::cout << std::endl << "=============================================" << std::endl;
43  std::cout << std::endl << "=================== GAS ==================" << std::endl;
44  std::cout << std::endl << "=============================================" << std::endl << std::endl;
45  snc = m_since;
46  std::cout << ">> Range mode [" << snc << ", " << m_till << "]" << std::endl;
47  std::cout << std::endl << "=============================================" << std::endl << std::endl;
48 
49  RPCFw caen ( host, user, passw );
50  std::vector<RPCObGas::Item> Gascheck;
51 
52  Gascheck = caen.createGAS(snc, m_till);
53  Gasdata = new RPCObGas();
54  RPCObGas::Item Ifill;
55  std::vector<RPCObGas::Item>::iterator Iit;
56  for(Iit = Gascheck.begin(); Iit != Gascheck.end(); Iit++)
57  {
58  Ifill = *(Iit);
59  Gasdata->ObGas_rpc.push_back(Ifill);
60  }
61  std::cout << " >> Final object size: " << Gasdata->ObGas_rpc.size() << std::endl;
62 
63 
64  if (!Gasdata->ObGas_rpc.empty()) {
65  niov = snc;
66  } else {
67  niov = snc;
68  std::cout << "NO DATA TO BE STORED" << std::endl;
69  }
70 
71  ::timeval tv;
72  tv.tv_sec = niov;
73  tv.tv_usec = 0;
74  edm::Timestamp tmstamp((unsigned long long)tv.tv_sec*1000000+(unsigned long long)tv.tv_usec);
75  std::cout << "UNIX time = " << tmstamp.value() << std::endl;
76 
77  edm::TimeValue_t daqtime=0LL;
78  daqtime=tv.tv_sec;
79  daqtime=(daqtime<<32)+tv.tv_usec;
80  edm::Timestamp daqstamp(daqtime);
81  edm::TimeValue_t dtime = daqstamp.value();
82  std::cout<<"DAQ time = " << dtime <<std::endl;
83 
84  niov = dtime;
85 
86  std::cout << "===> New IOV: since is = " << niov << std::endl;
87  m_to_transfer.push_back(std::make_pair((RPCObGas*)Gasdata,niov));
88 }
unsigned long long niov
Definition: RPCGasSH.h:37
RPCObGas * Gasdata
Definition: RPCGasSH.h:34
size_t size
Definition: Types.h:77
unsigned long long m_since
Definition: RPCGasSH.h:44
Definition: RPCFw.h:32
std::string host
Definition: RPCGasSH.h:41
std::string name
Definition: Types.h:73
cond::ValidityInterval lastInterval
Definition: Types.h:75
std::string m_name
Definition: RPCGasSH.h:40
std::vector< Item > ObGas_rpc
Definition: RPCObGas.h:28
std::string user
Definition: RPCGasSH.h:42
cond::LogDBEntry_t const & logDBEntry() const
unsigned long long TimeValue_t
Definition: Timestamp.h:28
std::string destinationDB
Definition: Types.h:93
std::string passw
Definition: RPCGasSH.h:43
std::string lastPayloadToken
Definition: Types.h:76
unsigned long long m_till
Definition: RPCGasSH.h:45
std::string usertext
Definition: Types.h:95
unsigned long long snc
Definition: RPCGasSH.h:36
TimeValue_t value() const
Definition: Timestamp.h:56
cond::TagInfo_t const & tagInfo() const
std::string popcon::RpcObGasData::id ( ) const
inlineoverridevirtual

Implements popcon::PopConSourceHandler< RPCObGas >.

Definition at line 30 of file RPCGasSH.h.

References m_name, muonDTDigis_cfi::pset, RpcObGasData(), and ~RpcObGasData().

30 { return m_name;}
std::string m_name
Definition: RPCGasSH.h:40

Member Data Documentation

RPCObGas* popcon::RpcObGasData::Gasdata

Definition at line 34 of file RPCGasSH.h.

Referenced by getNewObjects().

std::string popcon::RpcObGasData::host
private

Definition at line 41 of file RPCGasSH.h.

Referenced by getNewObjects().

std::string popcon::RpcObGasData::m_name
private

Definition at line 40 of file RPCGasSH.h.

Referenced by getNewObjects(), and id().

unsigned long long popcon::RpcObGasData::m_since
private

Definition at line 44 of file RPCGasSH.h.

Referenced by getNewObjects().

unsigned long long popcon::RpcObGasData::m_till
private

Definition at line 45 of file RPCGasSH.h.

Referenced by getNewObjects().

unsigned long long popcon::RpcObGasData::niov

Definition at line 37 of file RPCGasSH.h.

Referenced by getNewObjects().

std::string popcon::RpcObGasData::passw
private

Definition at line 43 of file RPCGasSH.h.

Referenced by getNewObjects().

unsigned long long popcon::RpcObGasData::snc

Definition at line 36 of file RPCGasSH.h.

Referenced by getNewObjects().

std::string popcon::RpcObGasData::user
private
unsigned long long popcon::RpcObGasData::utime

Definition at line 38 of file RPCGasSH.h.