3 |
|
|
4 |
|
#include "TrkUpgradeAnalysis/VHbb/interface/IBasicCut.h" |
5 |
|
|
6 |
< |
#include "VHbbAnalysis/VHbbDataFormats/interface/VHbbCandidate.h" |
6 |
> |
//#include "VHbbAnalysis/VHbbDataFormats/interface/VHbbCandidate.h" |
7 |
|
|
8 |
|
// Forward declarations |
9 |
+ |
class VHbbCandidate; |
10 |
|
namespace trkupgradeanalysis |
11 |
|
{ |
12 |
< |
class HistogramVariable; |
12 |
> |
namespace tools |
13 |
> |
{ |
14 |
> |
class NTupleRow; |
15 |
> |
} |
16 |
|
} |
17 |
|
|
18 |
|
namespace trkupgradeanalysis |
25 |
|
|
26 |
|
/// @brief Returns true if the supplied VHbbCandidate would pass the cut |
27 |
|
virtual bool applyCut( const VHbbCandidate& vhbbCandidate ) const = 0; |
28 |
+ |
|
29 |
+ |
/// @brief Alternative method to work entries previously stored in an NTuple |
30 |
+ |
virtual bool applyCut( const trkupgradeanalysis::tools::NTupleRow& ntupleRow ) const = 0; |
31 |
|
}; |
32 |
|
|
33 |
|
|