8 |
|
|
9 |
|
#include "SelectionStatus.h" |
10 |
|
#include "ParseArgs.h" |
11 |
+ |
#include "Track.h" |
12 |
|
|
13 |
|
#define MUON_IDMVA_CUT_BIN0 -0.825 |
14 |
< |
#define MUON_IDMVA_CUT_BIN1 -0.935 |
15 |
< |
#define MUON_IDMVA_CUT_BIN2 -0.845 |
16 |
< |
#define MUON_IDMVA_CUT_BIN3 -0.575 |
17 |
< |
#define MUON_IDMVA_CUT_BIN4 -0.996025 |
18 |
< |
#define MUON_IDMVA_CUT_BIN5 -0.990925 |
18 |
< |
|
19 |
< |
SelectionStatus muonPreSelection( ControlFlags &ctrl, const mithep::Muon * mu, const mithep::Vertex & vtx, const mithep::Array<mithep::PFCandidate> * pfCandidates ); |
20 |
< |
SelectionStatus passMuonSelectionZZ( ControlFlags &ctrl, const mithep::Muon * mu); |
21 |
< |
SelectionStatus passSoftMuonSelection( ControlFlags &ctrl, const mithep::Muon * mu, const mithep::Vertex & vtx ); |
22 |
< |
SelectionStatus passMuonSelection( ControlFlags &ctrl, const mithep::Muon * mu, const mithep::Vertex &); // kevin's WW selection |
23 |
< |
//SelectionStatus passMuonSelectionBackDoor( ControlFlags &ctrl, const mithep::Muon * mu ); // Z4l backdoor selection |
24 |
< |
SelectionStatus noPreSelection( ControlFlags &ctrl, const mithep::Muon * mu ); // Z4l backdoor preselection |
25 |
< |
bool isMuFO( const mithep::Muon * mu, const mithep::Vertex & vtx, const mithep::Array<mithep::PFCandidate> * pfCandidates ); |
14 |
> |
#define MUON_IDMVA_CUT_BIN1 -0.725 |
15 |
> |
#define MUON_IDMVA_CUT_BIN2 -0.895 |
16 |
> |
#define MUON_IDMVA_CUT_BIN3 -0.595 |
17 |
> |
#define MUON_IDMVA_CUT_BIN4 -0.865 |
18 |
> |
#define MUON_IDMVA_CUT_BIN5 -0.979 |
19 |
|
|
20 |
< |
SelectionStatus muonIDMVASelection(ControlFlags &ctrl, const mithep::Muon *mu, const mithep::Vertex & vtx ); |
20 |
> |
SelectionStatus muonDummyVeto(ControlFlags &, const mithep::Muon *, const mithep::Vertex *); |
21 |
> |
SelectionStatus muonCutBasedVeto(ControlFlags &, const mithep::Muon *, const mithep::Vertex *); |
22 |
> |
|
23 |
> |
SelectionStatus muonPreSelection( ControlFlags &ctrl, const mithep::Muon * mu, const mithep::Vertex * vtx, const mithep::Array<mithep::PFCandidate> * pfCandidates ); |
24 |
> |
SelectionStatus muonReferencePreSelection( ControlFlags &ctrl, const mithep::Muon * mu, const mithep::Vertex * vtx, const mithep::Array<mithep::PFCandidate> * pfCandidates ); |
25 |
> |
|
26 |
> |
SelectionStatus muonIDMVASelection(ControlFlags &ctrl, const mithep::Muon *mu, const mithep::Vertex * vtx ); |
27 |
|
void initMuonIDMVA(void); |
28 |
|
|
29 |
+ |
SelectionStatus muonIDPFSelection(ControlFlags &, const mithep::Muon *, const mithep::Vertex *, |
30 |
+ |
const mithep::Array<mithep::PFCandidate> * ); |
31 |
+ |
|
32 |
+ |
bool trackToPFMuonSelection( const mithep::Track *track, const mithep::MuonCol * muoncol ); |
33 |
+ |
|
34 |
|
#endif |