TIMBER  beta
Tree Interface for Making Binned Events with RDataFrame
HEM_drop.h
1 #ifndef _TIMBER_HEM_DROP
2 #define _TIMBER_HEM_DROP
3 #include "common.h"
4 #include <iostream>
5 #include <string>
6 #include <numeric>
7 
8 using namespace Pythonic;
17 class HEM_drop {
18  private:
19  bool _isAffectedData;
20  bool _isDataB;
21  std::vector<int> _idxToCheck;
22  std::string _setname;
23  public:
30  HEM_drop(std::string setname, std::vector<int> idxToCheck = {});
39  std::vector<float> eval(RVec<float> FatJet_eta, RVec<float> FatJet_phi, int run = 0);
40 };
41 #endif
C++ class to weight events as if one were dropping any events with a jet in the effected region...
Definition: HEM_drop.h:17
Definition: common.h:211