Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-02-07 14:23:35

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def IPCutPFCandidateSelector(*args, **kwargs):
0004   mod = cms.EDFilter('IPCutPFCandidateSelector',
0005     src = cms.InputTag(''),
0006     vertices = cms.InputTag(''),
0007     d0Cut = cms.double(0.2),
0008     dzCut = cms.double(0.5),
0009     dtCut = cms.double(-1),
0010     d0SigCut = cms.double(99),
0011     dzSigCut = cms.double(99),
0012     dtSigCut = cms.double(-1),
0013     filter = cms.bool(False),
0014     throwOnMissing = cms.untracked.bool(True),
0015     mightGet = cms.optional.untracked.vstring
0016   )
0017   for a in args:
0018     mod.update_(a)
0019   mod.update_(kwargs)
0020   return mod