1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import FWCore.ParameterSet.Config as cms
PhotonMETPSet = cms.PSet(
hltPathsToCheck = cms.vstring(
),
recPFMETLabel = cms.InputTag("pfMet"),
recPhotonLabel = cms.InputTag("gedPhotons"),
# -- Analysis specific cuts
minCandidates = cms.uint32(1),
# -- Analysis specific binnings
parametersTurnOn = cms.vdouble( 0, 5, 10, 15, 20,
25, 30, 35, 40,
45, 50, 55, 60,
65, 70, 75, 80,
85, 90, 95, 100,
105, 110, 115, 120,
125, 130, 135, 140,
145, 150, 155, 160,
165, 170, 175, 180,
185, 190, 195, 200),
dropPt2 = cms.bool(True),
dropPt3 = cms.bool(True),
)
|