ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitHzz4l/LeptonSelection/interface/MuonSelection.h
Revision: 1.12
Committed: Sun Jun 3 15:51:33 2012 UTC (12 years, 11 months ago) by khahn
Content type: text/plain
Branch: MAIN
CVS Tags: synced_FSR_2, synced_FSR
Changes since 1.11: +15 -3 lines
Log Message:
adding noD0 preselection for HF studies

File Contents

# User Rev Content
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 anlevin 1.11 #include "MuonCol.h"
9 khahn 1.1
10     #include "SelectionStatus.h"
11     #include "ParseArgs.h"
12 anlevin 1.10 #include "Track.h"
13 khahn 1.1
14 khahn 1.3 #define MUON_IDMVA_CUT_BIN0 -0.825
15 khahn 1.4 #define MUON_IDMVA_CUT_BIN1 -0.725
16     #define MUON_IDMVA_CUT_BIN2 -0.895
17     #define MUON_IDMVA_CUT_BIN3 -0.595
18     #define MUON_IDMVA_CUT_BIN4 -0.865
19     #define MUON_IDMVA_CUT_BIN5 -0.979
20 khahn 1.3
21 anlevin 1.9 SelectionStatus muonDummyVeto(ControlFlags &, const mithep::Muon *, const mithep::Vertex *);
22     SelectionStatus muonCutBasedVeto(ControlFlags &, const mithep::Muon *, const mithep::Vertex *);
23 khahn 1.5
24 khahn 1.12 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 khahn 1.3
37 khahn 1.12 SelectionStatus muonIDMVASelection(ControlFlags &ctrl,
38     const mithep::Muon *mu,
39     const mithep::Vertex * vtx );
40 khahn 1.3 void initMuonIDMVA(void);
41 khahn 1.1
42 anlevin 1.9 SelectionStatus muonIDPFSelection(ControlFlags &, const mithep::Muon *, const mithep::Vertex *,
43 khahn 1.6 const mithep::Array<mithep::PFCandidate> * );
44    
45 anlevin 1.10 bool trackToPFMuonSelection( const mithep::Track *track, const mithep::MuonCol * muoncol );
46    
47 khahn 1.1 #endif