File indexing completed on 2025-02-07 14:24:15
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def JetVertexChecker(*args, **kwargs):
0004 mod = cms.EDFilter('JetVertexChecker',
0005 beamSpot = cms.InputTag('hltOnlineBeamSpot'),
0006 jetTracks = cms.InputTag('hltFastPVJetTracksAssociator'),
0007 minPtRatio = cms.double(0.1),
0008 minPt = cms.double(0),
0009 doFilter = cms.bool(False),
0010 maxNJetsToCheck = cms.int32(2),
0011 maxNjetsOutput = cms.int32(2),
0012 maxChi2 = cms.double(20),
0013 maxTrackPt = cms.double(20),
0014 newMethod = cms.bool(False),
0015 maxETA = cms.double(2.4),
0016 pvErr_x = cms.double(0.0015),
0017 pvErr_y = cms.double(0.0015),
0018 pvErr_z = cms.double(1.5),
0019 mightGet = cms.optional.untracked.vstring
0020 )
0021 for a in args:
0022 mod.update_(a)
0023 mod.update_(kwargs)
0024 return mod