CMS 3D CMS Logo

hltExoticaMETplusTrack_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 METplusTrackPSet = cms.PSet(
4  hltPathsToCheck = cms.vstring(
5  "HLT_MET105_IsoTrk50_v", # 2017 proposal # Claimed path for Run3
6 # "HLT_MET120_IsoTrk50_v" # 2017 proposal # Claimed path for Run3, but a backup so no need to monitor it closely here
7  "HLT_PFMET105_IsoTrk50_v", # New Run 3 path
8  "HLT_PFMET110_PFJet100_v", # New Run 3 path
9  ),
10  recPFMETLabel = cms.InputTag("pfMet"),
11  #recMETLabel = cms.InputTag("hltPFMETProducer"),
12  genMETLabel = cms.InputTag("genMetTrue"),
13  recMuonLabel = cms.InputTag("muons"),
14  recElecLabel = cms.InputTag("gedGsfElectrons"),
15  #recTrackLabel = cms.InputTag("generalTracks"),
16  #hltMETLabel = cms.InputTag("hltMetClean"),
17  # -- Analysis specific cuts
18  minCandidates = cms.uint32(1),
19  # -- Analysis specific binnings
20  parametersTurnOn = cms.vdouble( 0, 10, 20, 30, 40, 50, 60, 70, 80, 90,
21  100, 110, 120, 130, 140, 150, 160, 170, 180, 190,
22  200, 210, 220, 230, 240, 250, 260, 270, 280, 290,
23  300, 310, 320, 330, 340, 350, 360, 370, 380, 390,
24  400
25  ),
26  parametersTurnOnSumEt = cms.vdouble( 0, 10, 20, 30, 40, 50, 60, 70, 80, 90,
27  100, 110, 120, 130, 140, 150, 160, 170, 180, 190,
28  200, 210, 220, 230, 240, 250, 260, 270, 280, 290,
29  300, 310, 320, 330, 340, 350, 360, 370, 380, 390,
30  400
31  ),
32  dropPt2 = cms.bool(True),
33  dropPt3 = cms.bool(True),
34 )
35