CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HLTGetRaw.cc
Go to the documentation of this file.
1 
13 
15 
16 // system include files
17 #include <memory>
18 #include <vector>
19 #include <map>
20 
24 
28 
29 // using namespace edm;
30 // using namespace std;
31 
32 //
33 // constructors and destructor
34 //
36 {
37  RawDataCollection_ = ps.getParameter<edm::InputTag>("RawDataCollection");
38 }
39 
41 { }
42 
43 //
44 // member functions
45 //
46 
47 // ------------ method called to produce the data ------------
48 void
50 {
51 // using namespace edm;
52 
53  edm::Handle<FEDRawDataCollection> RawDataHandle ;
54  iEvent.getByLabel(RawDataCollection_, RawDataHandle );
55 
56  LogDebug("DigiInfo") << "Loaded Raw Data Collection: " << RawDataCollection_ ;
57 
58 
59 }
#define LogDebug(id)
T getParameter(std::string const &) const
HLTGetRaw(const edm::ParameterSet &)
Definition: HLTGetRaw.cc:35
edm::InputTag RawDataCollection_
Definition: HLTGetRaw.h:33
void analyze(const edm::Event &, const edm::EventSetup &)
Definition: HLTGetRaw.cc:49
~HLTGetRaw()
Definition: HLTGetRaw.cc:40
int iEvent
Definition: GenABIO.cc:243
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:356