CMS 3D CMS Logo

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