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 JetNoBptxPSet = cms.PSet(
0004     hltPathsToCheck = cms.vstring(
0005 #        "HLT_UncorrectedJetE30_NoBPTX_v", # 2017 proposal # Claimed path for Run3, but a control path so no need to monitor it closely here
0006 #        "HLT_UncorrectedJetE30_NoBPTX3BX_v", # Claimed path for Run3, but a control path so no need to monitor it closely here
0007         "HLT_UncorrectedJetE60_NoBPTX3BX_v", # Claimed path for Run3
0008 #        "HLT_UncorrectedJetE70_NoBPTX3BX_v", # Claimed path for Run3, but a backup so no need to monitor it closely here
0009         ),
0010     recCaloJetLabel    = cms.InputTag("ak4CaloJets"),
0011 
0012     # -- Analysis specific cuts
0013     minCandidates = cms.uint32(1),
0014 
0015     # -- Analysis specific binnings
0016     parametersTurnOn = cms.vdouble( 0, 60, 70, 80, 90, 100, 110, 120, 130, 140, 150,
0017                                     160, 170, 180, 190, 200,
0018                                     220, 240, 260, 280, 300, 
0019                                     320, 340, 360, 380, 400,
0020                                     420, 440, 460, 480, 500),
0021     )