CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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_v",
6  "HLT_PFMET170_HBHECleaned_v",
7  "HLT_PFMET170_v",
8  "HLT_PFMET170_NoiseCleaned_v", # Run2
9  "HLT_MET200_v",
10  "HLT_MET100_v", # 0T
11  "HLT_MET150_v", # 0T
12 
13  # For backward compatibility
14  "HLT_PFMET170_JetIdCleaned_v",
15  "HLT_MET200_JetIdCleaned_v",
16  "HLT_MET100_JetIdCleaned_v", # 0T
17  "HLT_MET150_JetIdCleaned_v" # 0T
18  ),
19  recPFMETLabel = cms.InputTag("pfMet"),
20  recCaloMETLabel = cms.InputTag("caloMet"),
21  # -- Analysis specific cuts
22  minCandidates = cms.uint32(1),
23  # -- Analysis specific binnings
24  parametersTurnOn = cms.vdouble( 0, 60, 70, 80, 90, 100, 110, 120, 130, 140, 150,
25  160, 170, 180, 190, 200,
26  220, 240, 260, 280, 300,
27  320, 340, 360, 380, 400,
28  420, 440, 460, 480, 500),
29  )