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 
18 
19 namespace edm {
21 }
22 
23 //
24 // class declaration
25 //
26 
27 class HLTBool : public edm::EDFilter {
28 
29  public:
30 
31  explicit HLTBool(const edm::ParameterSet&);
32  ~HLTBool();
33  static void fillDescriptions(edm::ConfigurationDescriptions & descriptions);
34  virtual bool filter(edm::Event&, const edm::EventSetup&);
35 
36  private:
37 
39  bool result_;
40 
41 };
42 
43 #endif //HLTBool_h
HLTBool(const edm::ParameterSet &)
Definition: HLTBool.cc:19
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
Definition: HLTBool.cc:30
~HLTBool()
Definition: HLTBool.cc:25
bool result_
Boolean result.
Definition: HLTBool.h:39
virtual bool filter(edm::Event &, const edm::EventSetup &)
Definition: HLTBool.cc:42