CMS 3D CMS Logo

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

#include <HcalTPChannelParametersHandler.h>

Inheritance diagram for HcalTPChannelParametersHandler:
popcon::PopConSourceHandler< HcalTPChannelParameters >

Public Member Functions

void getNewObjects () override
 
 HcalTPChannelParametersHandler (edm::ParameterSet const &)
 
std::string id () const override
 
void initObject (HcalTPChannelParameters *)
 
 ~HcalTPChannelParametersHandler () override
 
- Public Member Functions inherited from popcon::PopConSourceHandler< HcalTPChannelParameters >
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
 
HcalTPChannelParametersmyDBObject
 
unsigned int sinceTime
 

Additional Inherited Members

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

Detailed Description

Definition at line 20 of file HcalTPChannelParametersHandler.h.

Constructor & Destructor Documentation

◆ ~HcalTPChannelParametersHandler()

HcalTPChannelParametersHandler::~HcalTPChannelParametersHandler ( )
override

Definition at line 11 of file HcalTPChannelsParametersHandler.cc.

11 {}

◆ HcalTPChannelParametersHandler()

HcalTPChannelParametersHandler::HcalTPChannelParametersHandler ( edm::ParameterSet const &  ps)

Definition at line 6 of file HcalTPChannelsParametersHandler.cc.

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

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

Member Function Documentation

◆ getNewObjects()

void HcalTPChannelParametersHandler::getNewObjects ( )
overridevirtual

Implements popcon::PopConSourceHandler< HcalTPChannelParameters >.

Definition at line 13 of file HcalTPChannelsParametersHandler.cc.

13  {
14  edm::LogInfo("HcalCondTools") << "------- " << m_name << " - > getNewObjects\n"
15  << "got offlineInfo" << tagInfo().name << ", size " << tagInfo().size
16  << ", last object valid since " << tagInfo().lastInterval.since << std::endl;
17 
18  if (!myDBObject)
19  throw cms::Exception("Empty DB object")
20  << m_name << " has received empty object - nothing to write to DB" << std::endl;
21 
22  // IOV information
23  cond::Time_t myTime = sinceTime;
24 
25  edm::LogInfo("HcalCondTools") << "Using IOV run " << sinceTime << std::endl;
26 
27  // prepare for transfer:
28  m_to_transfer.push_back(std::make_pair(myDBObject, myTime));
29 
30  edm::LogInfo("HcalCondTools") << "------- " << m_name << " - > getNewObjects" << std::endl;
31 }

References Exception, cond::TagInfo_t::lastInterval, m_name, popcon::PopConSourceHandler< HcalTPChannelParameters >::m_to_transfer, myDBObject, cond::TagInfo_t::name, cond::Iov_t::since, sinceTime, cond::TagInfo_t::size, and popcon::PopConSourceHandler< HcalTPChannelParameters >::tagInfo().

◆ id()

std::string HcalTPChannelParametersHandler::id ( ) const
inlineoverridevirtual

Implements popcon::PopConSourceHandler< HcalTPChannelParameters >.

Definition at line 23 of file HcalTPChannelParametersHandler.h.

23 { return m_name; }

References m_name.

◆ initObject()

void HcalTPChannelParametersHandler::initObject ( HcalTPChannelParameters fObject)

Definition at line 33 of file HcalTPChannelsParametersHandler.cc.

33 { myDBObject = fObject; }

References myDBObject.

Referenced by HcalTPChannelParametersPopConAnalyzer::endJob().

Member Data Documentation

◆ fFile

edm::FileInPath HcalTPChannelParametersHandler::fFile
private

Definition at line 31 of file HcalTPChannelParametersHandler.h.

◆ m_name

std::string HcalTPChannelParametersHandler::m_name
private

◆ myDBObject

HcalTPChannelParameters* HcalTPChannelParametersHandler::myDBObject
private

Definition at line 32 of file HcalTPChannelParametersHandler.h.

Referenced by getNewObjects(), and initObject().

◆ sinceTime

unsigned int HcalTPChannelParametersHandler::sinceTime
private
HcalTPChannelParametersHandler::sinceTime
unsigned int sinceTime
Definition: HcalTPChannelParametersHandler.h:30
popcon::PopConSourceHandler< HcalTPChannelParameters >::m_to_transfer
OldContainer m_to_transfer
Definition: PopConSourceHandler.h:162
edm::LogInfo
Log< level::Info, false > LogInfo
Definition: MessageLogger.h:125
cond::TagInfo_t::name
std::string name
Definition: Types.h:72
HcalTPChannelParametersHandler::m_name
std::string m_name
Definition: HcalTPChannelParametersHandler.h:33
popcon::PopConSourceHandler< HcalTPChannelParameters >::tagInfo
cond::TagInfo_t const & tagInfo() const
Definition: PopConSourceHandler.h:78
cond::Iov_t::since
Time_t since
Definition: Types.h:53
cond::Time_t
unsigned long long Time_t
Definition: Time.h:14
HcalTPChannelParametersHandler::myDBObject
HcalTPChannelParameters * myDBObject
Definition: HcalTPChannelParametersHandler.h:32
AlCaHLTBitMon_QueryRunRegistry.string
string string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
cond::TagInfo_t::lastInterval
Iov_t lastInterval
Definition: Types.h:73
Exception
Definition: hltDiff.cc:245
cond::TagInfo_t::size
size_t size
Definition: Types.h:74