Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-01-12 23:41:26

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def PrimaryVertexObjectFilter(*args, **kwargs):
0004   mod = cms.EDFilter('PrimaryVertexObjectFilter',
0005     src = cms.InputTag(''),
0006     filterParams = cms.PSet(
0007       minNdof = cms.double(4),
0008       maxZ = cms.double(24),
0009       maxRho = cms.double(2),
0010       cutsToIgnore = cms.vstring()
0011     ),
0012     filter = cms.bool(False),
0013     mightGet = cms.optional.untracked.vstring
0014   )
0015   for a in args:
0016     mod.update_(a)
0017   mod.update_(kwargs)
0018   return mod