CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HLTBool.h
Go to the documentation of this file.
1 #ifndef HLTBool_h
2 #define HLTBool_h
3 
20 
21 namespace edm {
23 }
24 
25 //
26 // class declaration
27 //
28 
29 class HLTBool : public edm::EDFilter {
30 
31  public:
32 
33  explicit HLTBool(const edm::ParameterSet&);
34  ~HLTBool();
35  static void fillDescriptions(edm::ConfigurationDescriptions & descriptions);
36  virtual bool filter(edm::Event&, const edm::EventSetup&);
37 
38  private:
39 
41  bool result_;
42 
43 };
44 
45 #endif //HLTBool_h
HLTBool(const edm::ParameterSet &)
Definition: HLTBool.cc:21
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
Definition: HLTBool.cc:32
~HLTBool()
Definition: HLTBool.cc:27
bool result_
Boolean result.
Definition: HLTBool.h:41
virtual bool filter(edm::Event &, const edm::EventSetup &)
Definition: HLTBool.cc:44