CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
HcalFrontEndMapHandler Class Reference

#include <HcalFrontEndMapHandler.h>

Inheritance diagram for HcalFrontEndMapHandler:
popcon::PopConSourceHandler< HcalFrontEndMap >

Public Member Functions

void getNewObjects () override
 
 HcalFrontEndMapHandler (edm::ParameterSet const &)
 
std::string id () const override
 
void initObject (HcalFrontEndMap *)
 
 ~HcalFrontEndMapHandler () override
 
- Public Member Functions inherited from popcon::PopConSourceHandler< HcalFrontEndMap >
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 ()
 

Private Attributes

edm::FileInPath fFile
 
std::string m_name
 
HcalFrontEndMapmyDBObject
 
unsigned int sinceTime
 

Additional Inherited Members

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

Detailed Description

Definition at line 22 of file HcalFrontEndMapHandler.h.

Constructor & Destructor Documentation

HcalFrontEndMapHandler::~HcalFrontEndMapHandler ( )
override

Definition at line 12 of file HcalFrontEndMapHandler.cc.

Referenced by id().

13 {
14 }
HcalFrontEndMapHandler::HcalFrontEndMapHandler ( edm::ParameterSet const &  ps)

Definition at line 6 of file HcalFrontEndMapHandler.cc.

References edm::ParameterSet::getUntrackedParameter(), m_name, sinceTime, and AlCaHLTBitMon_QueryRunRegistry::string.

Referenced by id().

7 {
8  m_name = ps.getUntrackedParameter<std::string>("name","HcalFrontEndMapHandler");
9  sinceTime = ps.getUntrackedParameter<unsigned>("IOVRun",0);
10 }

Member Function Documentation

void HcalFrontEndMapHandler::getNewObjects ( )
overridevirtual

Implements popcon::PopConSourceHandler< HcalFrontEndMap >.

Definition at line 16 of file HcalFrontEndMapHandler.cc.

References gather_cfg::cout, Exception, cond::TagInfo_t::lastInterval, m_name, popcon::PopConSourceHandler< HcalFrontEndMap >::m_to_transfer, myDBObject, cond::TagInfo_t::name, sinceTime, cond::TagInfo_t::size, and popcon::PopConSourceHandler< HcalFrontEndMap >::tagInfo().

17 {
18  // edm::LogInfo ("HcalFrontEndMapHandler")
19  std::cout
20  << "------- " << m_name
21  << " - > getNewObjects\n" <<
22  //check whats already inside of database
23  "got offlineInfo"<<
24  tagInfo().name << ", size " << tagInfo().size
25  << ", last object valid since "
26  << tagInfo().lastInterval.first << std::endl;
27 
28  if (!myDBObject)
29  throw cms::Exception("Empty DB object") << m_name
30  << " has received empty object - nothing to write to DB"
31  << std::endl;
32 
33  // IOV information
34  cond::Time_t myTime = sinceTime;
35 
36  std::cout << "Using IOV run " << sinceTime << std::endl;
37 
38  // prepare for transfer:
39  m_to_transfer.push_back(std::make_pair(myDBObject,myTime));
40 
41  edm::LogInfo("HcalFrontEndMapHandler") << "------- " << m_name << " - > getNewObjects" << std::endl;
42 
43 }
size_t size
Definition: Types.h:77
std::string name
Definition: Types.h:73
cond::ValidityInterval lastInterval
Definition: Types.h:75
unsigned long long Time_t
Definition: Time.h:16
std::string HcalFrontEndMapHandler::id ( ) const
inlineoverridevirtual
void HcalFrontEndMapHandler::initObject ( HcalFrontEndMap fObject)

Definition at line 45 of file HcalFrontEndMapHandler.cc.

References myDBObject.

Referenced by HcalFrontEndMapPopConAnalyzer::endJob(), and id().

46 {
47  myDBObject = fObject;
48 }

Member Data Documentation

edm::FileInPath HcalFrontEndMapHandler::fFile
private

Definition at line 34 of file HcalFrontEndMapHandler.h.

std::string HcalFrontEndMapHandler::m_name
private

Definition at line 36 of file HcalFrontEndMapHandler.h.

Referenced by getNewObjects(), HcalFrontEndMapHandler(), and id().

HcalFrontEndMap* HcalFrontEndMapHandler::myDBObject
private

Definition at line 35 of file HcalFrontEndMapHandler.h.

Referenced by getNewObjects(), and initObject().

unsigned int HcalFrontEndMapHandler::sinceTime
private

Definition at line 33 of file HcalFrontEndMapHandler.h.

Referenced by getNewObjects(), and HcalFrontEndMapHandler().