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_DoubleMu48NoFiltersNoVtx_v", # 2017 displaced mu-mu (backup) # Claimed path for Run3, but a backup so no need to monitor it closely here
7 # "HLT_DoubleMu33NoFiltersNoVtxDisplaced_v", # 2017 displaced mu-mu, muons with dxy> 0.01 cm (main) # Claimed path for Run3, but being superseeded by HLT_DoubleL3Mu10NoVtx_Displaced_v)
8 # "HLT_DoubleMu40NoFiltersNoVtxDisplaced_v", # 2017 displaced mu-mu, muons with dxy> 0.01 cm (backup) # Not claimed path for Run3
9  "HLT_DoubleL3Mu10NoVtx_Displaced_v", #New Run3 path
10  ),
11  recMuonLabel = cms.InputTag("muons"),
12  # -- Analysis specific cuts
13  minCandidates = cms.uint32(2),
14  # -- Analysis specific binnings
15  parametersDxy = cms.vdouble(50, -50, 50),
16  parametersTurnOn = cms.vdouble(
17  0, 10, 20, 30, 40, 50,
18  100, 150, 200, 250, 300, 350, 400, 450, 500, 550, 600
19  ),
20  dropPt3 = cms.bool(True),
21  )