TIMBER  beta
Tree Interface for Making Binned Events with RDataFrame
Wtag_SF.h
1 #ifndef _TIMBER_WTAG_SF
2 #define _TIMBER_WTAG_SF
3 #include <ROOT/RVec.hxx>
4 
9 class Wtag_SF {
10  private:
11  int _year;
12  float _HP, _HPunc, _LP, _LPunc;
13  public:
19  Wtag_SF(int year);
20  ~Wtag_SF(){};
27  ROOT::VecOps::RVec<float> eval(float tau21);
28 };
29 #endif
C++ class to access scale factors associated with tau21+mass based W tagging. More details provided a...
Definition: Wtag_SF.h:9
ROOT::VecOps::RVec< float > eval(float tau21)
Get the scale factor for a given tau21 value.
Definition: Wtag_SF.cc:24
Wtag_SF(int year)
Construct a new Wtag_SF object.
Definition: Wtag_SF.cc:3