test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
hltExoticaDisplacedMuEG_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 DisplacedMuEGPSet = cms.PSet(
4  hltPathsToCheck = cms.vstring(
5  "HLT_Mu38NoFiltersNoVtx_Photon38_CaloIdL_v", # Run2 Displaced muons
6  "HLT_Mu42NoFiltersNoVtx_Photon42_CaloIdL_v", # Run2 Displaced muons
7  "HLT_Mu33NoFiltersNoVtx_Photon33_CaloIdL_R9Id65_HE10_v", # Run2
8  "HLT_Mu28NoFiltersNoVtxDisplaced_Photon28_CaloIdL",
9  "HLT_Mu33NoFiltersNoVtxDisplaced_Photon33_CaloIdL"
10  ),
11  recElecLabel = cms.InputTag("gedGsfElectrons"),
12  recMuonLabel = cms.InputTag("muons"),
13  # -- Analysis specific cuts
14  minCandidates = cms.uint32(1),
15  # -- Analysis specific binnings
16  parametersDxy = cms.vdouble(50, -50, 50),
17  parametersTurnOn = cms.vdouble(
18  0, 10, 20, 30, 40, 50,
19  100, 150, 200, 250, 300, 350, 400, 450, 500, 550, 600
20  ),
21  dropPt2 = cms.bool(True),
22  dropPt3 = cms.bool(True),
23 )