CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_3/src/EventFilter/CSCRawToDigi/interface/DigiAnalyzer.h

Go to the documentation of this file.
00001 
00007 #include <iostream>
00008 #include "FWCore/Framework/interface/EDAnalyzer.h"
00009 #include "FWCore/Framework/interface/Event.h"
00010 #include "DataFormats/Common/interface/Handle.h"
00011 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00012 #include "FWCore/Framework/interface/EventSetup.h"
00013 #include "FWCore/Framework/interface/ESHandle.h"
00014 
00015 
00016 class DigiAnalyzer : public edm::EDAnalyzer {
00017 public:
00018   explicit DigiAnalyzer(edm::ParameterSet const& conf);
00019   virtual void analyze(edm::Event const& e, edm::EventSetup const& iSetup);
00020   //virtual void endJob();
00021 private:
00022   // variables persistent across events should be declared here.
00023   //
00024   int eventNumber;
00025 };
00026 
00027 
00028