Go to the documentation of this file.00001
00002
00003
00004
00005
00009
00010
00011
00012
00013
00014
00015
00016 #ifndef InputAnalyzer_h
00017 #define InputAnalyzer_h
00018
00019
00020 #include "FWCore/Framework/interface/Frameworkfwd.h"
00021 #include "FWCore/Framework/interface/EDAnalyzer.h"
00022
00023 #include "FWCore/Framework/interface/Event.h"
00024 #include "FWCore/Framework/interface/MakerMacros.h"
00025
00026 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00027
00028
00029
00030
00031 namespace edm
00032 {
00033 class InputAnalyzer : public edm::EDAnalyzer {
00034 public:
00035 explicit InputAnalyzer(const edm::ParameterSet&);
00036 ~InputAnalyzer();
00037
00038
00039 private:
00040 virtual void beginJob() ;
00041 virtual void analyze(const edm::Event&, const edm::EventSetup&);
00042 virtual void endJob() ;
00043
00044
00045
00046 bool dataStep2_;
00047 edm::InputTag label_;
00048
00049
00050 };
00051 }
00052 #endif