00001 #ifndef HLTAnalFilt_h 00002 #define HLTAnalFilt_h 00003 00017 #include "FWCore/Framework/interface/Event.h" 00018 #include "FWCore/Framework/interface/EDAnalyzer.h" 00019 #include "FWCore/ParameterSet/interface/ParameterSet.h" 00020 00021 // 00022 // class declaration 00023 // 00024 00025 class HLTAnalFilt : public edm::EDAnalyzer { 00026 00027 public: 00028 explicit HLTAnalFilt(const edm::ParameterSet&); 00029 ~HLTAnalFilt(); 00030 00031 virtual void analyze(const edm::Event&, const edm::EventSetup&); 00032 00033 private: 00034 edm::InputTag inputTag_; // input tag identifying product to analyze 00035 00036 }; 00037 00038 #endif //HLTAnalFilt_h