CMS 3D CMS Logo

hltExoticaDisplacedMuEG_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 DisplacedMuEGPSet = cms.PSet(
4  hltPathsToCheck = cms.vstring(
5  "HLT_Mu43NoFiltersNoVtx_Photon43_CaloIdL_v", # 2017 displaced e-mu (main)
6  "HLT_Mu48NoFiltersNoVtx_Photon48_CaloIdL_v", # 2017 displaced e-mu (backup)
7  ),
8  recElecLabel = cms.InputTag("gedGsfElectrons"),
9  recMuonLabel = cms.InputTag("muons"),
10  # -- Analysis specific cuts
11  minCandidates = cms.uint32(1),
12  # -- Analysis specific binnings
13  parametersDxy = cms.vdouble(50, -50, 50),
14  parametersTurnOn = cms.vdouble(
15  0, 10, 20, 30, 40, 50,
16  100, 150, 200, 250, 300, 350, 400, 450, 500, 550, 600
17  ),
18  dropPt2 = cms.bool(True),
19  dropPt3 = cms.bool(True),
20 )