Public Types | |
typedef HcalPedestalWidthsHandler | SourceHandler |
Public Member Functions | |
HcalPedestalWidthsPopConAnalyzer (const edm::ParameterSet &pset) | |
Private Member Functions | |
virtual void | analyze (const edm::Event &ev, const edm::EventSetup &esetup) |
virtual void | endJob () |
void | write () |
Private Attributes | |
popcon::PopCon | m_populator |
SourceHandler | m_source |
HcalPedestalWidths * | myDBObject |
Definition at line 7 of file HcalPedestalWidthsPopConAnalyzer.cc.
Reimplemented from popcon::PopConAnalyzer< HcalPedestalWidthsHandler >.
Definition at line 10 of file HcalPedestalWidthsPopConAnalyzer.cc.
HcalPedestalWidthsPopConAnalyzer::HcalPedestalWidthsPopConAnalyzer | ( | const edm::ParameterSet & | pset | ) | [inline] |
Definition at line 12 of file HcalPedestalWidthsPopConAnalyzer.cc.
: popcon::PopConAnalyzer<HcalPedestalWidthsHandler>(pset), m_populator(pset), m_source(pset.getParameter<edm::ParameterSet>("Source")) {}
virtual void HcalPedestalWidthsPopConAnalyzer::analyze | ( | const edm::Event & | ev, |
const edm::EventSetup & | esetup | ||
) | [inline, private, virtual] |
Reimplemented from popcon::PopConAnalyzer< HcalPedestalWidthsHandler >.
Definition at line 24 of file HcalPedestalWidthsPopConAnalyzer.cc.
References edm::EventSetup::get(), myDBObject, and edm::ESHandle< T >::product().
{ //Using ES to get the data: edm::ESHandle<HcalPedestalWidths> objecthandle; esetup.get<HcalPedestalWidthsRcd>().get(objecthandle); myDBObject = new HcalPedestalWidths(*objecthandle.product() ); }
virtual void HcalPedestalWidthsPopConAnalyzer::endJob | ( | void | ) | [inline, private, virtual] |
Reimplemented from popcon::PopConAnalyzer< HcalPedestalWidthsHandler >.
Definition at line 18 of file HcalPedestalWidthsPopConAnalyzer.cc.
References HcalPedestalWidthsHandler::initObject(), m_source, myDBObject, and write().
{ m_source.initObject(myDBObject); write(); }
void HcalPedestalWidthsPopConAnalyzer::write | ( | void | ) | [inline, private] |
Reimplemented from popcon::PopConAnalyzer< HcalPedestalWidthsHandler >.
Definition at line 33 of file HcalPedestalWidthsPopConAnalyzer.cc.
References m_populator, m_source, and popcon::PopCon::write().
Referenced by endJob().
{ m_populator.write(m_source); }
Reimplemented from popcon::PopConAnalyzer< HcalPedestalWidthsHandler >.
Definition at line 36 of file HcalPedestalWidthsPopConAnalyzer.cc.
Referenced by write().
Reimplemented from popcon::PopConAnalyzer< HcalPedestalWidthsHandler >.
Definition at line 37 of file HcalPedestalWidthsPopConAnalyzer.cc.
Definition at line 39 of file HcalPedestalWidthsPopConAnalyzer.cc.