ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitHzz4l/LeptonSelection/interface/MuonSelection.h
Revision: 1.3
Committed: Thu Apr 26 06:56:18 2012 UTC (13 years ago) by khahn
Content type: text/plain
Branch: MAIN
Changes since 1.2: +21 -8 lines
Log Message:
first pass port to bambu

File Contents

# Content
1 #ifndef MUON_SELECTION
2 #define MUON_SELECTION
3
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 #define MUON_IDMVA_CUT_BIN0 -0.825
13 #define MUON_IDMVA_CUT_BIN1 -0.935
14 #define MUON_IDMVA_CUT_BIN2 -0.845
15 #define MUON_IDMVA_CUT_BIN3 -0.575
16 #define MUON_IDMVA_CUT_BIN4 -0.996025
17 #define MUON_IDMVA_CUT_BIN5 -0.990925
18
19 SelectionStatus muonPreSelection( ControlFlags &ctrl, const mithep::Muon * mu, const mithep::Vertex & vtx, const mithep::Array<mithep::PFCandidate> * pfCandidates );
20 SelectionStatus passMuonSelectionZZ( ControlFlags &ctrl, const mithep::Muon * mu);
21 SelectionStatus passSoftMuonSelection( ControlFlags &ctrl, const mithep::Muon * mu, const mithep::Vertex & vtx );
22 SelectionStatus passMuonSelection( ControlFlags &ctrl, const mithep::Muon * mu, const mithep::Vertex &); // kevin's WW selection
23 //SelectionStatus passMuonSelectionBackDoor( ControlFlags &ctrl, const mithep::Muon * mu ); // Z4l backdoor selection
24 SelectionStatus noPreSelection( ControlFlags &ctrl, const mithep::Muon * mu ); // Z4l backdoor preselection
25 bool isMuFO( const mithep::Muon * mu, const mithep::Vertex & vtx, const mithep::Array<mithep::PFCandidate> * pfCandidates );
26
27 SelectionStatus muonIDMVASelection(ControlFlags &ctrl, const mithep::Muon *mu, const mithep::Vertex & vtx );
28 void initMuonIDMVA(void);
29
30 #endif