Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-11-23 03:28:11

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def HLTVertexFilter(*args, **kwargs):
0004   mod = cms.EDFilter('HLTVertexFilter',
0005     saveTags = cms.bool(True),
0006     inputTag = cms.InputTag('hltPixelVertices'),
0007     minNDoF = cms.double(0),
0008     maxChi2 = cms.double(99999),
0009     maxD0 = cms.double(1),
0010     maxZ = cms.double(15),
0011     minVertices = cms.uint32(1),
0012     mightGet = cms.optional.untracked.vstring
0013   )
0014   for a in args:
0015     mod.update_(a)
0016   mod.update_(kwargs)
0017   return mod