5 |
|
#include "Vertex.h" |
6 |
|
#include "PFCandidate.h" |
7 |
|
#include "PFCandidateCol.h" |
8 |
+ |
#include "MuonCol.h" |
9 |
|
|
10 |
|
#include "SelectionStatus.h" |
11 |
|
#include "ParseArgs.h" |
12 |
+ |
#include "Track.h" |
13 |
|
|
14 |
|
#define MUON_IDMVA_CUT_BIN0 -0.825 |
15 |
|
#define MUON_IDMVA_CUT_BIN1 -0.725 |
18 |
|
#define MUON_IDMVA_CUT_BIN4 -0.865 |
19 |
|
#define MUON_IDMVA_CUT_BIN5 -0.979 |
20 |
|
|
21 |
< |
SelectionStatus muonDummyVeto(ControlFlags &, const mithep::Muon *, const mithep::Vertex &); |
22 |
< |
SelectionStatus muonCutBasedVeto(ControlFlags &, const mithep::Muon *, const mithep::Vertex &); |
21 |
> |
SelectionStatus muonDummyVeto(ControlFlags &, const mithep::Muon *, const mithep::Vertex *); |
22 |
> |
SelectionStatus muonCutBasedVeto(ControlFlags &, const mithep::Muon *, const mithep::Vertex *); |
23 |
|
|
24 |
< |
SelectionStatus muonPreSelection( ControlFlags &ctrl, const mithep::Muon * mu, const mithep::Vertex & vtx, const mithep::Array<mithep::PFCandidate> * pfCandidates ); |
25 |
< |
SelectionStatus passMuonSelectionZZ( ControlFlags &ctrl, const mithep::Muon * mu); |
26 |
< |
SelectionStatus passSoftMuonSelection( ControlFlags &ctrl, const mithep::Muon * mu, const mithep::Vertex & vtx ); |
27 |
< |
SelectionStatus passMuonSelection( ControlFlags &ctrl, const mithep::Muon * mu, const mithep::Vertex &); // kevin's WW selection |
28 |
< |
//SelectionStatus passMuonSelectionBackDoor( ControlFlags &ctrl, const mithep::Muon * mu ); // Z4l backdoor selection |
29 |
< |
SelectionStatus noPreSelection( ControlFlags &ctrl, const mithep::Muon * mu ); // Z4l backdoor preselection |
30 |
< |
bool isMuFO( const mithep::Muon * mu, const mithep::Vertex & vtx, const mithep::Array<mithep::PFCandidate> * pfCandidates ); |
31 |
< |
|
32 |
< |
SelectionStatus muonIDMVASelection(ControlFlags &ctrl, const mithep::Muon *mu, const mithep::Vertex & vtx ); |
24 |
> |
SelectionStatus muonPreSelection( ControlFlags &ctrl, |
25 |
> |
const mithep::Muon * mu, |
26 |
> |
const mithep::Vertex * vtx, |
27 |
> |
const mithep::Array<mithep::PFCandidate> * pfCandidates ); |
28 |
> |
SelectionStatus muonReferencePreSelection( ControlFlags &ctrl, |
29 |
> |
const mithep::Muon * mu, |
30 |
> |
const mithep::Vertex * vtx, |
31 |
> |
const mithep::Array<mithep::PFCandidate> * pfCandidates ); |
32 |
> |
SelectionStatus muonPreSelectionNoD0DzIP( ControlFlags &ctrl, |
33 |
> |
const mithep::Muon * mu, |
34 |
> |
const mithep::Vertex * vtx, |
35 |
> |
const mithep::Array<mithep::PFCandidate> * pfCandidates ); |
36 |
> |
|
37 |
> |
SelectionStatus muonIDMVASelection(ControlFlags &ctrl, |
38 |
> |
const mithep::Muon *mu, |
39 |
> |
const mithep::Vertex * vtx ); |
40 |
|
void initMuonIDMVA(void); |
41 |
|
|
42 |
< |
SelectionStatus muonIDPFSelection(ControlFlags &, const mithep::Muon *, const mithep::Vertex &, |
42 |
> |
SelectionStatus muonIDPFSelection(ControlFlags &, const mithep::Muon *, const mithep::Vertex *, |
43 |
|
const mithep::Array<mithep::PFCandidate> * ); |
44 |
|
|
45 |
+ |
bool trackToPFMuonSelection( const mithep::Track *track, const mithep::MuonCol * muoncol ); |
46 |
+ |
|
47 |
|
#endif |