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_VetoL3Mu0DxyMax1cm_v", #New for Run 3 (introduced in HLT V1.3)
8  "HLT_DoubleL2Mu_L3Mu16NoVtx_VetoL3Mu0DxyMax0p1cm_v", #New for Run 3 (introduced in HLT V1.3)
9  "HLT_DoubleL2Mu10NoVtx_2Cha_CosmicSeed_VetoL3Mu0DxyMax1cm_v", #New for Run 3 (introduced in HLT V1.3)
10  ),
11  recMuonLabel = cms.InputTag("muons"),
12  recMuonTrkLabel = cms.InputTag("displacedStandAloneMuons"),
13 
14  # -- Analysis specific cuts
15  minCandidates = cms.uint32(2),
16  # -- Analysis specific binnings
17  parametersDxy = cms.vdouble(50, -50, 50),
18  parametersTurnOn = cms.vdouble(
19  0, 10, 20, 30, 40, 50,
20  100, 150, 200, 250, 300, 350, 400, 450, 500, 550, 600
21  ),
22  dropPt3 = cms.bool(True),
23 
24  )