File indexing completed on 2024-04-06 12:18:52
0001 import FWCore.ParameterSet.Config as cms
0002
0003 TracklessJetsPSet = cms.PSet(
0004 hltPathsToCheck = cms.vstring(
0005 ),
0006 recPFJetLabel = cms.InputTag("ak4PFJets"),
0007 recCaloJetLabel = cms.InputTag("ak4CaloJets"),
0008
0009 minCandidates = cms.uint32(1),
0010
0011 parametersTurnOn = cms.vdouble(0, 50, 100, 150, 200, 250, 300, 350, 400, 450, 470,
0012 500, 550, 600, 650, 700, 800, 900, 1000
0013 ),
0014
0015 dropPt3 = cms.bool(True)
0016 )