CMS 3D CMS Logo

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

#include <HcalZDCLowGainFractionsHandler.h>

Inheritance diagram for HcalZDCLowGainFractionsHandler:
popcon::PopConSourceHandler< HcalZDCLowGainFractions >

Public Member Functions

void getNewObjects () override
 
 HcalZDCLowGainFractionsHandler (edm::ParameterSet const &)
 
std::string id () const override
 
void initObject (HcalZDCLowGainFractions *)
 
 ~HcalZDCLowGainFractionsHandler () override
 
- Public Member Functions inherited from popcon::PopConSourceHandler< HcalZDCLowGainFractions >
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 ()
 
cond::TagInfo_t const & tagInfo () const
 
std::string const & userTextLog () const
 
virtual ~PopConSourceHandler ()
 

Private Attributes

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

Additional Inherited Members

- Public Types inherited from popcon::PopConSourceHandler< HcalZDCLowGainFractions >
typedef std::map< Time_t, std::shared_ptr< HcalZDCLowGainFractions > > Container
 
typedef std::unique_ptr< HcalZDCLowGainFractionsRef
 
typedef PopConSourceHandler< HcalZDCLowGainFractionsself
 
typedef cond::Time_t Time_t
 
typedef HcalZDCLowGainFractions value_type
 
- Protected Member Functions inherited from popcon::PopConSourceHandler< HcalZDCLowGainFractions >
cond::persistency::SessiondbSession () const
 
- Protected Attributes inherited from popcon::PopConSourceHandler< HcalZDCLowGainFractions >
Container m_iovs
 
std::vector< std::pair< HcalZDCLowGainFractions *, Time_t > > m_to_transfer
 
std::string m_userTextLog
 

Detailed Description

Definition at line 20 of file HcalZDCLowGainFractionsHandler.h.

Constructor & Destructor Documentation

◆ ~HcalZDCLowGainFractionsHandler()

HcalZDCLowGainFractionsHandler::~HcalZDCLowGainFractionsHandler ( )
override

Definition at line 11 of file HcalZDCLowGainFractionsHandler.cc.

11 {}

◆ HcalZDCLowGainFractionsHandler()

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

Definition at line 6 of file HcalZDCLowGainFractionsHandler.cc.

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

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

Member Function Documentation

◆ getNewObjects()

void HcalZDCLowGainFractionsHandler::getNewObjects ( )
overridevirtual

Implements popcon::PopConSourceHandler< HcalZDCLowGainFractions >.

Definition at line 13 of file HcalZDCLowGainFractionsHandler.cc.

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

13  {
14  edm::LogInfo("HcalZDCLowGainFractionsHandler") << "------- " << m_name << " - > getNewObjects\n"
15  <<
16  //check whats already inside of database
17  "got offlineInfo" << tagInfo().name << ", size " << tagInfo().size << ", last object valid since "
18  << tagInfo().lastInterval.since << std::endl;
19 
20  if (!myDBObject)
21  throw cms::Exception("Empty DB object")
22  << m_name << " has received empty object - nothing to write to DB" << std::endl;
23 
24  // IOV information
25  cond::Time_t myTime = sinceTime;
26 
27  edm::LogInfo("HcalZDCLowGainFractionsHandler") << "Using IOV run " << sinceTime << std::endl;
28 
29  // prepare for transfer:
30  m_to_transfer.push_back(std::make_pair(myDBObject, myTime));
31 
32  edm::LogInfo("HcalZDCLowGainFractionsHandler") << "------- " << m_name << " - > getNewObjects" << std::endl;
33 }
Iov_t lastInterval
Definition: Types.h:73
Time_t since
Definition: Types.h:53
size_t size
Definition: Types.h:74
std::string name
Definition: Types.h:72
unsigned long long Time_t
Definition: Time.h:14
std::vector< std::pair< HcalZDCLowGainFractions *, Time_t > > m_to_transfer
Log< level::Info, false > LogInfo

◆ id()

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

◆ initObject()

void HcalZDCLowGainFractionsHandler::initObject ( HcalZDCLowGainFractions fObject)

Definition at line 35 of file HcalZDCLowGainFractionsHandler.cc.

References myDBObject.

Referenced by HcalZDCLowGainFractionsPopConAnalyzer::endJob().

35 { myDBObject = fObject; }

Member Data Documentation

◆ fFile

edm::FileInPath HcalZDCLowGainFractionsHandler::fFile
private

Definition at line 31 of file HcalZDCLowGainFractionsHandler.h.

◆ m_name

std::string HcalZDCLowGainFractionsHandler::m_name
private

◆ myDBObject

HcalZDCLowGainFractions* HcalZDCLowGainFractionsHandler::myDBObject
private

Definition at line 32 of file HcalZDCLowGainFractionsHandler.h.

Referenced by getNewObjects(), and initObject().

◆ sinceTime

unsigned int HcalZDCLowGainFractionsHandler::sinceTime
private