File indexing completed on 2024-11-23 03:28:28
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def ClusterShapeHitFilterESProducer(*args, **kwargs):
0004 mod = cms.ESProducer('ClusterShapeHitFilterESProducer',
0005 PixelShapeFile = cms.string('RecoTracker/PixelLowPtUtilities/data/pixelShapePhase0.par'),
0006 PixelShapeFileL1 = cms.string('RecoTracker/PixelLowPtUtilities/data/pixelShapePhase0.par'),
0007 ComponentName = cms.string(''),
0008 isPhase2 = cms.bool(False),
0009 doPixelShapeCut = cms.bool(True),
0010 doStripShapeCut = cms.bool(True),
0011 clusterChargeCut = cms.PSet(
0012 value = cms.double(-1)
0013 ),
0014 appendToDataLabel = cms.string('')
0015 )
0016 for a in args:
0017 mod.update_(a)
0018 mod.update_(kwargs)
0019 return mod