#include <HLTrigger/HLTanalyzers/interface/HLTGetRaw.h>
Public Member Functions | |
void | analyze (const edm::Event &, const edm::EventSetup &) |
HLTGetRaw (const edm::ParameterSet &) | |
~HLTGetRaw () | |
Private Attributes | |
edm::InputTag | RawDataCollection_ |
See header file for documentation.
Definition at line 25 of file HLTGetRaw.h.
HLTGetRaw::HLTGetRaw | ( | const edm::ParameterSet & | ps | ) | [explicit] |
Definition at line 35 of file HLTGetRaw.cc.
References edm::ParameterSet::getParameter(), and RawDataCollection_.
00036 { 00037 RawDataCollection_ = ps.getParameter<edm::InputTag>("RawDataCollection"); 00038 }
HLTGetRaw::~HLTGetRaw | ( | ) |
void HLTGetRaw::analyze | ( | const edm::Event & | iEvent, | |
const edm::EventSetup & | iSetup | |||
) | [virtual] |
Implements edm::EDAnalyzer.
Definition at line 49 of file HLTGetRaw.cc.
References edm::Event::getByLabel(), LogDebug, and RawDataCollection_.
00050 { 00051 // using namespace edm; 00052 00053 edm::Handle<FEDRawDataCollection> RawDataHandle ; 00054 iEvent.getByLabel(RawDataCollection_, RawDataHandle ); 00055 00056 LogDebug("DigiInfo") << "Loaded Raw Data Collection: " << RawDataCollection_ ; 00057 00058 00059 }
edm::InputTag HLTGetRaw::RawDataCollection_ [private] |