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 METplusTrackPSet = cms.PSet(
0004     hltPathsToCheck = cms.vstring(
0005         "HLT_MET105_IsoTrk50_v", # 2017 proposal # Claimed path for Run3
0006 #        "HLT_MET120_IsoTrk50_v"  # 2017 proposal # Claimed path for Run3, but a backup so no need to monitor it closely here
0007         "HLT_PFMET105_IsoTrk50_v", # New Run 3 path
0008         "HLT_PFMET110_PFJet100_v", # New Run 3 path
0009     ),
0010     recPFMETLabel = cms.InputTag("pfMet"),
0011     #recMETLabel   = cms.InputTag("hltPFMETProducer"),
0012     genMETLabel   = cms.InputTag("genMetTrue"),
0013     recMuonLabel  = cms.InputTag("muons"),
0014     recElecLabel  = cms.InputTag("gedGsfElectrons"),
0015     #recTrackLabel = cms.InputTag("generalTracks"),
0016     #hltMETLabel   = cms.InputTag("hltMetClean"),
0017     # -- Analysis specific cuts
0018     minCandidates = cms.uint32(1),
0019     # -- Analysis specific binnings
0020     parametersTurnOn = cms.vdouble(   0,  10,  20,  30,  40,  50,  60,  70,   80,  90,
0021                                     100, 110, 120, 130, 140, 150, 160, 170,  180, 190,
0022                                     200, 210, 220, 230, 240, 250, 260, 270,  280, 290,
0023                                     300, 310, 320, 330, 340, 350, 360, 370,  380, 390,
0024                                     400
0025                                   ),
0026     parametersTurnOnSumEt = cms.vdouble(   0,  10,  20,  30,  40,  50,  60,  70,   80,  90,
0027                                          100, 110, 120, 130, 140, 150, 160, 170,  180, 190,
0028                                          200, 210, 220, 230, 240, 250, 260, 270,  280, 290,
0029                                          300, 310, 320, 330, 340, 350, 360, 370,  380, 390,
0030                                          400
0031                                        ),
0032     dropPt2 = cms.bool(True),
0033     dropPt3 = cms.bool(True),
0034 )
0035