CMS 3D CMS Logo

hltExoticaDisplacedL2Dimuon_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 DisplacedL2DimuonPSet = cms.PSet(
4  hltPathsToCheck = cms.vstring(
5  "HLT_DoubleL2Mu23NoVtx_2Cha_CosmicSeed_v", #Claimed for Run 3
6  "HLT_DoubleL2Mu23NoVtx_2Cha_v", #Claimed for Run 3
7  "HLT_DoubleL2Mu10NoVtx_2Cha_PromptL3Mu0Veto_v", #New for Run 3
8  ),
9  recMuonLabel = cms.InputTag("muons"),
10  recMuonTrkLabel = cms.InputTag("displacedStandAloneMuons"),
11 
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 
22  )