File indexing completed on 2024-11-23 03:27:50
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def NearbyPixelClustersProducer(*args, **kwargs):
0004 mod = cms.EDProducer('NearbyPixelClustersProducer',
0005 throwBadComponents = cms.bool(False),
0006 dumpWholeDetIds = cms.bool(False),
0007 clusterCollection = cms.InputTag('siPixelClusters'),
0008 trajectoryInput = cms.InputTag('myRefitter'),
0009 mightGet = cms.optional.untracked.vstring
0010 )
0011 for a in args:
0012 mod.update_(a)
0013 mod.update_(kwargs)
0014 return mod