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 |
+ |
#include "MitPhysics/Utils/interface/MuonTools.h" |
15 |
+ |
|
16 |
+ |
#include "PileupEnergyDensity.h" |
17 |
+ |
|
18 |
|
|
19 |
|
#define MUON_IDMVA_CUT_BIN0 -0.825 |
20 |
|
#define MUON_IDMVA_CUT_BIN1 -0.725 |
23 |
|
#define MUON_IDMVA_CUT_BIN4 -0.865 |
24 |
|
#define MUON_IDMVA_CUT_BIN5 -0.979 |
25 |
|
|
26 |
< |
SelectionStatus muonDummyVeto(ControlFlags &, const mithep::Muon *, const mithep::Vertex &); |
20 |
< |
SelectionStatus muonCutBasedVeto(ControlFlags &, const mithep::Muon *, const mithep::Vertex &); |
26 |
> |
bool muon2012CutBasedIDTight(const mithep::Muon *mu, const mithep::Vertex * vtx, const mithep::Array<mithep::PFCandidate> * pfCandidates, const mithep::Array<mithep::PileupEnergyDensity> * puEnergyDensity); |
27 |
|
|
22 |
– |
SelectionStatus muonPreSelection( ControlFlags &ctrl, const mithep::Muon * mu, const mithep::Vertex & vtx, const mithep::Array<mithep::PFCandidate> * pfCandidates ); |
23 |
– |
SelectionStatus passMuonSelectionZZ( ControlFlags &ctrl, const mithep::Muon * mu); |
24 |
– |
SelectionStatus passSoftMuonSelection( ControlFlags &ctrl, const mithep::Muon * mu, const mithep::Vertex & vtx ); |
25 |
– |
SelectionStatus passMuonSelection( ControlFlags &ctrl, const mithep::Muon * mu, const mithep::Vertex &); // kevin's WW selection |
26 |
– |
//SelectionStatus passMuonSelectionBackDoor( ControlFlags &ctrl, const mithep::Muon * mu ); // Z4l backdoor selection |
27 |
– |
SelectionStatus noPreSelection( ControlFlags &ctrl, const mithep::Muon * mu ); // Z4l backdoor preselection |
28 |
– |
bool isMuFO( const mithep::Muon * mu, const mithep::Vertex & vtx, const mithep::Array<mithep::PFCandidate> * pfCandidates ); |
28 |
|
|
29 |
< |
SelectionStatus muonIDMVASelection(ControlFlags &ctrl, const mithep::Muon *mu, const mithep::Vertex & vtx ); |
29 |
> |
SelectionStatus muonDummyVeto(ControlFlags &, const mithep::Muon *, const mithep::Vertex *); |
30 |
> |
SelectionStatus muonCutBasedVeto(ControlFlags &, const mithep::Muon *, const mithep::Vertex *); |
31 |
> |
|
32 |
> |
SelectionStatus muonPreSelection( ControlFlags &ctrl, |
33 |
> |
const mithep::Muon * mu, |
34 |
> |
const mithep::Vertex * vtx, |
35 |
> |
const mithep::Array<mithep::PFCandidate> * pfCandidates ); |
36 |
> |
SelectionStatus muonReferencePreSelection( ControlFlags &ctrl, |
37 |
> |
const mithep::Muon * mu, |
38 |
> |
const mithep::Vertex * vtx, |
39 |
> |
const mithep::Array<mithep::PFCandidate> * pfCandidates ); |
40 |
> |
SelectionStatus muonPreSelectionNoD0DzIP( ControlFlags &ctrl, |
41 |
> |
const mithep::Muon * mu, |
42 |
> |
const mithep::Vertex * vtx, |
43 |
> |
const mithep::Array<mithep::PFCandidate> * pfCandidates ); |
44 |
> |
|
45 |
> |
SelectionStatus muonIDMVASelection(ControlFlags &ctrl, |
46 |
> |
const mithep::Muon *mu, |
47 |
> |
const mithep::Vertex * vtx ); |
48 |
|
void initMuonIDMVA(void); |
49 |
|
|
50 |
< |
SelectionStatus muonIDPFSelection(ControlFlags &, const mithep::Muon *, const mithep::Vertex &, |
50 |
> |
SelectionStatus muonIDPFSelection(ControlFlags &, const mithep::Muon *, const mithep::Vertex *, |
51 |
|
const mithep::Array<mithep::PFCandidate> * ); |
52 |
|
|
53 |
+ |
bool trackToPFMuonSelection( const mithep::Track *track, const mithep::MuonCol * muoncol ); |
54 |
+ |
|
55 |
|
#endif |