00001 #ifndef BTAGGER_H_
00002 #define BTAGGER_H_
00003
00004 #include <Options.h>
00005 #include <PhysicsObjects.h>
00006
00013 class BTagger {
00014 public:
00016 BTagger(Options const &options);
00017
00019 bool operator()(Jet const &jet) const;
00020
00022 bool IsTaggable(Jet const &jet) const;
00023
00024 private:
00026 double bTagCut_;
00027
00029 double ptCut_;
00030
00032 double etaCut_;
00033 };
00034
00035 #endif // BTAGGER_H_