21 |
|
#include "ParseArgs.h" |
22 |
|
#include "SelectionStatus.h" |
23 |
|
|
24 |
+ |
#include "PFCandidate.h" |
25 |
+ |
|
26 |
+ |
#include "MitPhysics/Utils/interface/ElectronTools.h" |
27 |
+ |
|
28 |
+ |
|
29 |
+ |
|
30 |
|
#define ELE_IDMVA_CUT_BIN0 0.369 |
31 |
|
#define ELE_IDMVA_CUT_BIN1 -0.025 |
32 |
|
#define ELE_IDMVA_CUT_BIN2 0.531 |
57 |
|
|
58 |
|
using namespace std; |
59 |
|
|
60 |
+ |
bool electron2012CutBasedIDMedium(const mithep::Electron *ele, const mithep::Vertex * vtx, const mithep::Array<mithep::PFCandidate> * fPFCandidates, const mithep::DecayParticleCol *conversions); |
61 |
+ |
|
62 |
|
SelectionStatus electronDummyVeto(ControlFlags &, const mithep::Electron*, const mithep::Vertex *); |
63 |
|
SelectionStatus electronCutBasedVeto(ControlFlags &, const mithep::Electron*, const mithep::Vertex *); |
64 |
|
|
65 |
|
SelectionStatus electronPreSelection(ControlFlags &, const mithep::Electron *, const mithep::Vertex *); |
66 |
|
SelectionStatus electronReferencePreSelection(ControlFlags &, const mithep::Electron *, const mithep::Vertex *); |
67 |
+ |
SelectionStatus electronPreSelectionNoD0DzIP(ControlFlags &ctrl, |
68 |
+ |
const mithep::Electron *electron, |
69 |
+ |
const mithep::Vertex * vtx); |
70 |
|
|
71 |
|
SelectionStatus electronIDMVASelection(ControlFlags &ctrl, |
72 |
|
const mithep::Electron *ele, |
74 |
|
SelectionStatus electronReferenceIDMVASelection(ControlFlags &ctrl, |
75 |
|
const mithep::Electron *ele, |
76 |
|
const mithep::Vertex * vtx ); |
77 |
+ |
SelectionStatus electronReferenceIDMVASelectionV1(ControlFlags &ctrl, |
78 |
+ |
const mithep::Electron *ele, |
79 |
+ |
const mithep::Vertex * vtx ); |
80 |
|
void initElectronIDMVA(); |
81 |
+ |
void initElectronIDMVAV1(); |
82 |
|
|
83 |
|
#endif |
84 |
|
|