1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import FWCore.ParameterSet.Config as cms
LowPtElectronPSet = cms.PSet(
hltPathsToCheck = cms.vstring(
"HLT_Ele28_WPTight_Gsf_v", # Claimed path for Run3
"HLT_Ele32_WPTight_Gsf_L1DoubleEG_v", # Claimed path for Run3
"HLT_Ele32_WPTight_Gsf_v", # Claimed path for Run3
"HLT_Ele35_WPTight_Gsf_v" # Claimed path for Run3
),
recElecLabel = cms.InputTag("gedGsfElectrons"),
# -- Analysis specific cuts
minCandidates = cms.uint32(1),
# -- Analysis specific binnings
parametersTurnOn = cms.vdouble( 0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50,
60, 70, 80, 100
),
dropPt2 = cms.bool(True),
dropPt3 = cms.bool(True),
)
|