1 |
grimes |
1.1 |
#ifndef trkupgradeanalysis_BasicVHbbCandidateCut_h
|
2 |
|
|
#define trkupgradeanalysis_BasicVHbbCandidateCut_h
|
3 |
|
|
|
4 |
|
|
#include "TrkUpgradeAnalysis/VHbb/interface/IBasicCut.h"
|
5 |
|
|
|
6 |
|
|
#include "VHbbAnalysis/VHbbDataFormats/interface/VHbbCandidate.h"
|
7 |
|
|
|
8 |
|
|
// Forward declarations
|
9 |
|
|
namespace trkupgradeanalysis
|
10 |
|
|
{
|
11 |
|
|
class HistogramVariable;
|
12 |
|
|
}
|
13 |
|
|
|
14 |
|
|
namespace trkupgradeanalysis
|
15 |
|
|
{
|
16 |
|
|
|
17 |
|
|
class IBasicVHbbCandidateCut : public trkupgradeanalysis::IBasicCut
|
18 |
|
|
{
|
19 |
|
|
public:
|
20 |
|
|
virtual ~IBasicVHbbCandidateCut() {}
|
21 |
|
|
|
22 |
|
|
/// @brief Returns true if the supplied VHbbCandidate would pass the cut
|
23 |
|
|
virtual bool applyCut( const VHbbCandidate& vhbbCandidate ) const = 0;
|
24 |
|
|
};
|
25 |
|
|
|
26 |
|
|
|
27 |
|
|
} // end of namespace trkupgradeanalysis
|
28 |
|
|
|
29 |
|
|
|
30 |
|
|
#endif // end of "#ifndef trkupgradeanalysis_BasicVHbbCandidateCut_h"
|