test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
hltExoticaPhotonMET_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 PhotonMETPSet = cms.PSet(
4  hltPathsToCheck = cms.vstring(
5  "HLT_Photon135_PFMET100_v",
6  "HLT_Photon135_PFMET100_JetIdCleaned_v", # For backward compatibility
7  "HLT_Photon125_v" # 0T
8  ),
9  recPFMETLabel = cms.InputTag("pfMet"),
10  recPhotonLabel = cms.InputTag("gedPhotons"),
11  # -- Analysis specific cuts
12  minCandidates = cms.uint32(1),
13  # -- Analysis specific binnings
14  parametersTurnOn = cms.vdouble( 0, 5, 10, 15, 20,
15  25, 30, 35, 40,
16  45, 50, 55, 60,
17  65, 70, 75, 80,
18  85, 90, 95, 100,
19  105, 110, 115, 120,
20  125, 130, 135, 140,
21  145, 150, 155, 160,
22  165, 170, 175, 180,
23  185, 190, 195, 200),
24  dropPt2 = cms.bool(True),
25  dropPt3 = cms.bool(True),
26  )