CMS 3D CMS Logo

hltExoticaPureMET_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 PureMETPSet = cms.PSet(
4  hltPathsToCheck = cms.vstring(
5  "HLT_PFMET170_NotCleaned_v",
6  "HLT_PFMET170_v",
7  "HLT_PFMET170_HBHECleaned_v",
8  "HLT_PFMET170_v",
9  "HLT_PFMET170_NoiseCleaned_v", # Run2
10  "HLT_MET200_v",
11  "HLT_MET100_v", # 0T
12  "HLT_MET150_v", # 0T
13 
14  # For backward compatibility
15  "HLT_PFMET170_JetIdCleaned_v",
16  "HLT_MET200_JetIdCleaned_v",
17  "HLT_MET100_JetIdCleaned_v", # 0T
18  "HLT_MET150_JetIdCleaned_v" # 0T
19  ),
20  recPFMETLabel = cms.InputTag("pfMet"),
21  recCaloMETLabel = cms.InputTag("caloMet"),
22  # -- Analysis specific cuts
23  minCandidates = cms.uint32(1),
24  # -- Analysis specific binnings
25  parametersTurnOn = cms.vdouble( 0, 60, 70, 80, 90, 100, 110, 120, 130, 140, 150,
26  160, 170, 180, 190, 200,
27  220, 240, 260, 280, 300,
28  320, 340, 360, 380, 400,
29  420, 440, 460, 480, 500),
30  )