CMS 3D CMS Logo

Public Member Functions | Private Attributes

HLTGetRaw Class Reference

#include <HLTGetRaw.h>

Inheritance diagram for HLTGetRaw:
edm::EDAnalyzer

List of all members.

Public Member Functions

void analyze (const edm::Event &, const edm::EventSetup &)
 HLTGetRaw (const edm::ParameterSet &)
 ~HLTGetRaw ()

Private Attributes

edm::InputTag RawDataCollection_

Detailed Description

This class is an EDAnalyzer implementing a "get data into RAM" functionality for RAW, to simulate online FF running/timimg.

Date:
2011/01/27 10:38:50
Revision:
1.3
Author:
various

See header file for documentation

Date:
2011/01/27 10:38:51
Revision:
1.5
Author:
various

Definition at line 25 of file HLTGetRaw.h.


Constructor & Destructor Documentation

HLTGetRaw::HLTGetRaw ( const edm::ParameterSet ps) [explicit]

Definition at line 35 of file HLTGetRaw.cc.

References edm::ParameterSet::getParameter(), and RawDataCollection_.

{
  RawDataCollection_ = ps.getParameter<edm::InputTag>("RawDataCollection");
}
HLTGetRaw::~HLTGetRaw ( )

Definition at line 40 of file HLTGetRaw.cc.

{ }

Member Function Documentation

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_.

{
//    using namespace edm;

    edm::Handle<FEDRawDataCollection> RawDataHandle ; 
    iEvent.getByLabel(RawDataCollection_, RawDataHandle );

    LogDebug("DigiInfo") << "Loaded Raw Data Collection: " << RawDataCollection_ ; 

    
}

Member Data Documentation

Definition at line 33 of file HLTGetRaw.h.

Referenced by analyze(), and HLTGetRaw().