Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:18:52

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 DisplacedDimuonPSet = cms.PSet(
0004     hltPathsToCheck = cms.vstring(
0005         "HLT_DoubleMu43NoFiltersNoVtx_v", # 2017 displaced mu-mu (main) # Claimed path for Run3
0006         "HLT_DoubleL3Mu16_10NoVtx_DxyMin0p01cm_v", #New Run3 path (introduced in HLT V1.3)
0007         "HLT_DoubleL3dTksMu16_10NoVtx_DxyMin0p01cm_v", #New Run3 path (introduced in HLT V1.3)
0008         ),
0009     recMuonLabel  = cms.InputTag("muons"),
0010     # -- Analysis specific cuts
0011     minCandidates = cms.uint32(2),
0012     # -- Analysis specific binnings
0013     parametersDxy      = cms.vdouble(50, -50, 50),
0014     parametersTurnOn = cms.vdouble(
0015                                     0, 10, 20, 30, 40, 50,
0016                                     100, 150, 200, 250, 300, 350, 400, 450, 500, 550, 600
0017                                    ),
0018     dropPt3 = cms.bool(True),
0019     )