1 |
|
#ifndef MUON_SELECTION |
2 |
|
#define MUON_SELECTION |
3 |
|
|
4 |
< |
#include "TMuon.hh" |
4 |
> |
#include "Muon.h" |
5 |
> |
#include "Vertex.h" |
6 |
> |
#include "PFCandidate.h" |
7 |
> |
#include "PFCandidateCol.h" |
8 |
|
|
9 |
|
#include "SelectionStatus.h" |
10 |
|
#include "ParseArgs.h" |
11 |
|
|
12 |
< |
SelectionStatus muonPreSelection( ControlFlags &ctrl, const mithep::TMuon * mu ); |
13 |
< |
SelectionStatus passMuonSelectionZZ( ControlFlags &ctrl, const mithep::TMuon * mu ); |
14 |
< |
SelectionStatus passSoftMuonSelection( ControlFlags &ctrl, const mithep::TMuon * mu ); |
15 |
< |
SelectionStatus passMuonSelection( ControlFlags &ctrl, const mithep::TMuon * mu ); // kevin's WW selection |
16 |
< |
SelectionStatus passMuonSelectionBackDoor( ControlFlags &ctrl, const mithep::TMuon * mu ); // Z4l backdoor selection |
17 |
< |
SelectionStatus noPreSelection( ControlFlags &ctrl, const mithep::TMuon * mu ); // Z4l backdoor preselection |
18 |
< |
bool isMuFO( const mithep::TMuon * mu ); // hacked in from MuonDenominator.h |
12 |
> |
#define MUON_IDMVA_CUT_BIN0 -0.825 |
13 |
> |
#define MUON_IDMVA_CUT_BIN1 -0.725 |
14 |
> |
#define MUON_IDMVA_CUT_BIN2 -0.895 |
15 |
> |
#define MUON_IDMVA_CUT_BIN3 -0.595 |
16 |
> |
#define MUON_IDMVA_CUT_BIN4 -0.865 |
17 |
> |
#define MUON_IDMVA_CUT_BIN5 -0.979 |
18 |
> |
|
19 |
> |
SelectionStatus muonDummyVeto(ControlFlags &, const mithep::Muon *, const mithep::Vertex &); |
20 |
> |
SelectionStatus muonCutBasedVeto(ControlFlags &, const mithep::Muon *, const mithep::Vertex &); |
21 |
> |
|
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 ); |
29 |
> |
|
30 |
> |
SelectionStatus muonIDMVASelection(ControlFlags &ctrl, const mithep::Muon *mu, const mithep::Vertex & vtx ); |
31 |
> |
void initMuonIDMVA(void); |
32 |
> |
|
33 |
> |
SelectionStatus muonIDPFSelection(ControlFlags &, const mithep::Muon *, const mithep::Vertex &, |
34 |
> |
const mithep::Array<mithep::PFCandidate> * ); |
35 |
|
|
36 |
|
#endif |