00001 #ifndef HLTBool_h 00002 #define HLTBool_h 00003 00017 #include "FWCore/Framework/interface/Event.h" 00018 #include "FWCore/Framework/interface/EDFilter.h" 00019 #include "FWCore/ParameterSet/interface/ParameterSet.h" 00020 00021 namespace edm { 00022 class ConfigurationDescriptions; 00023 } 00024 00025 // 00026 // class declaration 00027 // 00028 00029 class HLTBool : public edm::EDFilter { 00030 00031 public: 00032 00033 explicit HLTBool(const edm::ParameterSet&); 00034 ~HLTBool(); 00035 static void fillDescriptions(edm::ConfigurationDescriptions & descriptions); 00036 virtual bool filter(edm::Event&, const edm::EventSetup&); 00037 00038 private: 00039 00041 bool result_; 00042 00043 }; 00044 00045 #endif //HLTBool_h