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 //
20 // class declaration
21 //
22 
23 class HLTBool : public HLTFilter {
24 
25  public:
26 
27  explicit HLTBool(const edm::ParameterSet&);
28  ~HLTBool();
29  virtual bool filter(edm::Event&, const edm::EventSetup&);
30 
31  private:
32 
34  bool result_;
35 
36 };
37 
38 #endif //HLTBool_h
HLTBool(const edm::ParameterSet &)
Definition: HLTBool.cc:19
~HLTBool()
Definition: HLTBool.cc:25
bool result_
Boolean result.
Definition: HLTBool.h:34
virtual bool filter(edm::Event &, const edm::EventSetup &)
Definition: HLTBool.cc:35