File indexing completed on 2025-02-07 14:23:55
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def HLTPixelClusterShapeFilter(*args, **kwargs):
0004 mod = cms.EDFilter('HLTPixelClusterShapeFilter',
0005 saveTags = cms.bool(True),
0006 inputTag = cms.InputTag('hltSiPixelRecHits'),
0007 minZ = cms.double(-20),
0008 maxZ = cms.double(20.05),
0009 zStep = cms.double(0.2),
0010 clusterPars = cms.vdouble(
0011 0,
0012 0.0045
0013 ),
0014 nhitsTrunc = cms.int32(150),
0015 clusterTrunc = cms.double(2),
0016 mightGet = cms.optional.untracked.vstring
0017 )
0018 for a in args:
0019 mod.update_(a)
0020 mod.update_(kwargs)
0021 return mod