CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
PerformanceWorkingPoint.h
Go to the documentation of this file.
1 #ifndef PerformanceWorkingPoint_h
2 #define PerformanceWorkingPoint_h
3 
4 
5 #include "string"
6 
8  public:
10  PerformanceWorkingPoint(float c, std::string s) : cut_(c), dname_ (s) {}
11  float cut()const {return cut_;}
12  std::string discriminantName()const {return dname_;}
13  bool cutBased()const {if (cut_==-9999) return false; return true;}
14 
15  private:
16  float cut_;
17  std::string dname_;
18 };
19 
20 
21 #endif
PerformanceWorkingPoint(float c, std::string s)
std::string discriminantName() const