CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
HcalPedestalWidthsHandler Class Reference

#include <HcalPedestalWidthsHandler.h>

Inheritance diagram for HcalPedestalWidthsHandler:
popcon::PopConSourceHandler< HcalPedestalWidths >

Public Member Functions

void getNewObjects ()
 
 HcalPedestalWidthsHandler (edm::ParameterSet const &)
 
std::string id () const
 
void initObject (HcalPedestalWidths *)
 
 ~HcalPedestalWidthsHandler ()
 
- Public Member Functions inherited from popcon::PopConSourceHandler< HcalPedestalWidths >
void convertFromOld ()
 
SummarydummySummary (typename OldContainer::value_type const &) const
 
void initialize (cond::DbSession dbSession, cond::TagInfo const &tagInfo, cond::LogDBEntry const &logDBEntry)
 
Ref lastPayload () const
 
cond::LogDBEntry const & logDBEntry () const
 
std::pair< Container const
*, std::string const > 
operator() (cond::DbSession session, cond::TagInfo const &tagInfo, cond::LogDBEntry const &logDBEntry) const
 
 PopConSourceHandler ()
 
Container const & returnData ()
 
void sort ()
 
cond::TagInfo const & tagInfo () const
 
std::string const & userTextLog () const
 
virtual ~PopConSourceHandler ()
 

Private Attributes

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

Additional Inherited Members

- Public Types inherited from popcon::PopConSourceHandler< HcalPedestalWidths >
typedef std::vector< TripletContainer
 
typedef std::vector< std::pair
< HcalPedestalWidths
*, cond::Time_t > > 
OldContainer
 
typedef PopConSourceHandler
< HcalPedestalWidths
self
 
typedef cond::Summary Summary
 
typedef cond::Time_t Time_t
 
typedef HcalPedestalWidths value_type
 
- Protected Member Functions inherited from popcon::PopConSourceHandler< HcalPedestalWidths >
int add (value_type *payload, Summary *summary, Time_t time)
 
- Protected Attributes inherited from popcon::PopConSourceHandler< HcalPedestalWidths >
OldContainer m_to_transfer
 
std::string m_userTextLog
 

Detailed Description

Definition at line 25 of file HcalPedestalWidthsHandler.h.

Constructor & Destructor Documentation

HcalPedestalWidthsHandler::~HcalPedestalWidthsHandler ( )

Definition at line 12 of file HcalPedestalWidthsHandler.cc.

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

Definition at line 6 of file HcalPedestalWidthsHandler.cc.

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

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

Member Function Documentation

void HcalPedestalWidthsHandler::getNewObjects ( )
virtual

Implements popcon::PopConSourceHandler< HcalPedestalWidths >.

Definition at line 16 of file HcalPedestalWidthsHandler.cc.

References gather_cfg::cout, edm::hlt::Exception, cond::TagInfo::lastInterval, m_name, popcon::PopConSourceHandler< HcalPedestalWidths >::m_to_transfer, myDBObject, cond::TagInfo::name, sinceTime, cond::TagInfo::size, and popcon::PopConSourceHandler< HcalPedestalWidths >::tagInfo().

17 {
18  // edm::LogInfo ("HcalPedestalWidthsHandler")
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("HcalPedestalWidthsHandler") << "------- " << m_name << " - > getNewObjects" << std::endl;
42 
43 }
std::string name
Definition: TagInfo.h:9
unsigned long long Time_t
Definition: Time.h:16
size_t size
Definition: TagInfo.h:13
cond::ValidityInterval lastInterval
Definition: TagInfo.h:11
tuple cout
Definition: gather_cfg.py:121
std::string HcalPedestalWidthsHandler::id ( void  ) const
inlinevirtual

Implements popcon::PopConSourceHandler< HcalPedestalWidths >.

Definition at line 29 of file HcalPedestalWidthsHandler.h.

References m_name.

29 { return m_name;}
void HcalPedestalWidthsHandler::initObject ( HcalPedestalWidths fObject)

Definition at line 45 of file HcalPedestalWidthsHandler.cc.

References myDBObject.

Referenced by HcalPedestalWidthsPopConAnalyzer::endJob().

46 {
47  myDBObject = fObject;
48 }

Member Data Documentation

edm::FileInPath HcalPedestalWidthsHandler::fFile
private

Definition at line 37 of file HcalPedestalWidthsHandler.h.

std::string HcalPedestalWidthsHandler::m_name
private

Definition at line 39 of file HcalPedestalWidthsHandler.h.

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

HcalPedestalWidths* HcalPedestalWidthsHandler::myDBObject
private

Definition at line 38 of file HcalPedestalWidthsHandler.h.

Referenced by getNewObjects(), and initObject().

unsigned int HcalPedestalWidthsHandler::sinceTime
private

Definition at line 36 of file HcalPedestalWidthsHandler.h.

Referenced by getNewObjects(), and HcalPedestalWidthsHandler().