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 EleMuPSet = cms.PSet(
0004     hltPathsToCheck = cms.vstring(
0005         "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ_v", # Claimed path for Run3
0006         "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_v", # Claimed path for Run3
0007         "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ_v", # Claimed path for Run3
0008         "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_v" # Claimed path for Run3
0009         ),
0010     recElecLabel  = cms.InputTag("gedGsfElectrons"),
0011     recMuonLabel  = cms.InputTag("muons"),
0012     # -- Analysis specific cuts
0013     minCandidates = cms.uint32(1),
0014     # -- Analysis specific binnings
0015     parametersTurnOn = cms.vdouble( 0, 5, 10, 15, 20,
0016                                     25, 30, 35, 40,
0017                                     45, 50, 55, 60,
0018                                     65, 70, 75, 80,
0019                                     85, 90, 95, 100,
0020                                     105, 110, 115, 120,
0021                                     125, 130, 135, 140,
0022                                     145, 150, 155, 160,
0023                                     165, 170, 175, 180,
0024                                     185, 190, 195, 200),
0025     dropPt2 = cms.bool(True),
0026     dropPt3 = cms.bool(True),
0027     )