Public Types | |
typedef HcalGainWidthsHandler | SourceHandler |
Public Member Functions | |
HcalGainWidthsPopConAnalyzer (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 |
HcalGainWidths * | myDBObject |
Definition at line 7 of file HcalGainWidthsPopConAnalyzer.cc.
Reimplemented from popcon::PopConAnalyzer< HcalGainWidthsHandler >.
Definition at line 10 of file HcalGainWidthsPopConAnalyzer.cc.
HcalGainWidthsPopConAnalyzer::HcalGainWidthsPopConAnalyzer | ( | const edm::ParameterSet & | pset | ) | [inline] |
Definition at line 12 of file HcalGainWidthsPopConAnalyzer.cc.
00012 : 00013 popcon::PopConAnalyzer<HcalGainWidthsHandler>(pset), 00014 m_populator(pset), 00015 m_source(pset.getParameter<edm::ParameterSet>("Source")) {}
virtual void HcalGainWidthsPopConAnalyzer::analyze | ( | const edm::Event & | ev, | |
const edm::EventSetup & | esetup | |||
) | [inline, private, virtual] |
Reimplemented from popcon::PopConAnalyzer< HcalGainWidthsHandler >.
Definition at line 24 of file HcalGainWidthsPopConAnalyzer.cc.
References edm::EventSetup::get(), myDBObject, and edm::ESHandle< T >::product().
00025 { 00026 //Using ES to get the data: 00027 00028 edm::ESHandle<HcalGainWidths> objecthandle; 00029 esetup.get<HcalGainWidthsRcd>().get(objecthandle); 00030 myDBObject = new HcalGainWidths(*objecthandle.product() ); 00031 }
Reimplemented from popcon::PopConAnalyzer< HcalGainWidthsHandler >.
Definition at line 18 of file HcalGainWidthsPopConAnalyzer.cc.
References HcalGainWidthsHandler::initObject(), m_source, myDBObject, and write().
00019 { 00020 m_source.initObject(myDBObject); 00021 write(); 00022 }
Reimplemented from popcon::PopConAnalyzer< HcalGainWidthsHandler >.
Definition at line 33 of file HcalGainWidthsPopConAnalyzer.cc.
References m_populator, m_source, and popcon::PopCon::write().
Referenced by endJob().
00033 { m_populator.write(m_source); }
Reimplemented from popcon::PopConAnalyzer< HcalGainWidthsHandler >.
Definition at line 36 of file HcalGainWidthsPopConAnalyzer.cc.
Referenced by write().
Reimplemented from popcon::PopConAnalyzer< HcalGainWidthsHandler >.
Definition at line 37 of file HcalGainWidthsPopConAnalyzer.cc.
Definition at line 39 of file HcalGainWidthsPopConAnalyzer.cc.