CMS 3D CMS Logo

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

#include <HcalChannelQualityHandler.h>

Inheritance diagram for HcalChannelQualityHandler:
popcon::PopConSourceHandler< HcalChannelQuality >

Public Member Functions

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

Additional Inherited Members

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

Detailed Description

Definition at line 23 of file HcalChannelQualityHandler.h.

Constructor & Destructor Documentation

HcalChannelQualityHandler::~HcalChannelQualityHandler ( )
override

Definition at line 11 of file HcalChannelQualityHandler.cc.

Referenced by id().

11 {}
HcalChannelQualityHandler::HcalChannelQualityHandler ( edm::ParameterSet const &  ps)

Definition at line 6 of file HcalChannelQualityHandler.cc.

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

Referenced by id().

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

Member Function Documentation

void HcalChannelQualityHandler::getNewObjects ( )
overridevirtual

Implements popcon::PopConSourceHandler< HcalChannelQuality >.

Definition at line 13 of file HcalChannelQualityHandler.cc.

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

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

Definition at line 36 of file HcalChannelQualityHandler.cc.

References myDBObject.

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

36 { myDBObject = fObject; }

Member Data Documentation

edm::FileInPath HcalChannelQualityHandler::fFile
private

Definition at line 34 of file HcalChannelQualityHandler.h.

std::string HcalChannelQualityHandler::m_name
private

Definition at line 36 of file HcalChannelQualityHandler.h.

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

HcalChannelQuality* HcalChannelQualityHandler::myDBObject
private

Definition at line 35 of file HcalChannelQualityHandler.h.

Referenced by getNewObjects(), and initObject().

unsigned int HcalChannelQualityHandler::sinceTime
private

Definition at line 33 of file HcalChannelQualityHandler.h.

Referenced by getNewObjects(), and HcalChannelQualityHandler().