1 |
khahn |
1.1 |
#ifndef MUON_SELECTION
|
2 |
|
|
#define MUON_SELECTION
|
3 |
|
|
|
4 |
khahn |
1.3 |
#include "Muon.h"
|
5 |
|
|
#include "Vertex.h"
|
6 |
|
|
#include "PFCandidate.h"
|
7 |
|
|
#include "PFCandidateCol.h"
|
8 |
khahn |
1.1 |
|
9 |
|
|
#include "SelectionStatus.h"
|
10 |
|
|
#include "ParseArgs.h"
|
11 |
anlevin |
1.10 |
#include "Track.h"
|
12 |
khahn |
1.1 |
|
13 |
khahn |
1.3 |
#define MUON_IDMVA_CUT_BIN0 -0.825
|
14 |
khahn |
1.4 |
#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 |
khahn |
1.3 |
|
20 |
anlevin |
1.9 |
SelectionStatus muonDummyVeto(ControlFlags &, const mithep::Muon *, const mithep::Vertex *);
|
21 |
|
|
SelectionStatus muonCutBasedVeto(ControlFlags &, const mithep::Muon *, const mithep::Vertex *);
|
22 |
khahn |
1.5 |
|
23 |
anlevin |
1.9 |
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 |
khahn |
1.3 |
|
26 |
anlevin |
1.9 |
SelectionStatus muonIDMVASelection(ControlFlags &ctrl, const mithep::Muon *mu, const mithep::Vertex * vtx );
|
27 |
khahn |
1.3 |
void initMuonIDMVA(void);
|
28 |
khahn |
1.1 |
|
29 |
anlevin |
1.9 |
SelectionStatus muonIDPFSelection(ControlFlags &, const mithep::Muon *, const mithep::Vertex *,
|
30 |
khahn |
1.6 |
const mithep::Array<mithep::PFCandidate> * );
|
31 |
|
|
|
32 |
anlevin |
1.10 |
bool trackToPFMuonSelection( const mithep::Track *track, const mithep::MuonCol * muoncol );
|
33 |
|
|
|
34 |
khahn |
1.1 |
#endif
|