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) # Claimed path for Run3
6  "HLT_DoubleL3Mu16_10NoVtx_DxyMin0p01cm_v", #New Run3 path (introduced in HLT V1.3)
7  "HLT_DoubleL3dTksMu16_10NoVtx_DxyMin0p01cm_v", #New Run3 path (introduced in HLT V1.3)
8  ),
9  recMuonLabel = cms.InputTag("muons"),
10  # -- Analysis specific cuts
11  minCandidates = cms.uint32(2),
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  dropPt3 = cms.bool(True),
19  )