File indexing completed on 2025-02-07 14:24:12
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def CTPPSPixelLocalTrackProducer(*args, **kwargs):
0004 mod = cms.EDProducer('CTPPSPixelLocalTrackProducer',
0005 tag = cms.InputTag('ctppsPixelRecHits'),
0006 patternFinderAlgorithm = cms.string('RPixRoadFinder'),
0007 trackFinderAlgorithm = cms.string('RPixPlaneCombinatoryTracking'),
0008 trackMinNumberOfPoints = cms.uint32(3),
0009 verbosity = cms.untracked.int32(0),
0010 maximumChi2OverNDF = cms.double(5),
0011 maximumXLocalDistanceFromTrack = cms.double(0.2),
0012 maximumYLocalDistanceFromTrack = cms.double(0.3),
0013 maxHitPerPlane = cms.int32(20),
0014 maxHitPerRomanPot = cms.int32(60),
0015 maxTrackPerRomanPot = cms.int32(10),
0016 maxTrackPerPattern = cms.int32(5),
0017 numberOfPlanesPerPot = cms.int32(6),
0018 roadRadius = cms.double(1),
0019 minRoadSize = cms.int32(3),
0020 maxRoadSize = cms.int32(20),
0021 roadRadiusBadPot = cms.double(0.5),
0022 mightGet = cms.optional.untracked.vstring
0023 )
0024 for a in args:
0025 mod.update_(a)
0026 mod.update_(kwargs)
0027 return mod