File indexing completed on 2024-09-26 05:06:21
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def PixelTripletHLTEDProducer(*args, **kwargs):
0004 mod = cms.EDProducer('PixelTripletHLTEDProducer',
0005 doublets = cms.InputTag('hitPairEDProducer'),
0006 produceSeedingHitSets = cms.bool(False),
0007 produceIntermediateHitTriplets = cms.bool(False),
0008 maxElement = cms.uint32(1000000),
0009 extraHitRPhitolerance = cms.double(0.032),
0010 extraHitRZtolerance = cms.double(0.037),
0011 useMultScattering = cms.bool(True),
0012 useBending = cms.bool(True),
0013 useFixedPreFiltering = cms.bool(False),
0014 phiPreFiltering = cms.double(0.3),
0015 SeedComparitorPSet = cms.PSet(
0016 ComponentName = cms.string('none')
0017 ),
0018 mightGet = cms.optional.untracked.vstring
0019 )
0020 for a in args:
0021 mod.update_(a)
0022 mod.update_(kwargs)
0023 return mod