CMS 3D CMS Logo

hltExoticaLowPtElectron_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 LowPtElectronPSet = cms.PSet(
4  hltPathsToCheck = cms.vstring(
5  "HLT_Ele27_WP85_Gsf_v" # Run2 proposal
6  #"HLT_Ele27_WP80_v" # Run1
7  ),
8  recElecLabel = cms.InputTag("gedGsfElectrons"),
9  # -- Analysis specific cuts
10  minCandidates = cms.uint32(1),
11  # -- Analysis specific binnings
12  #parametersTurnOn = cms.vdouble( 0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50,
13  # 60, 70, 80, 100, 120, 140, 160, 180, 200
14  parametersTurnOn = cms.vdouble( 0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50,
15  60, 70, 80, 100
16  ),
17  dropPt3 = cms.bool(True),
18  )