File indexing completed on 2024-04-06 12:28:27
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 import FWCore.ParameterSet.Config as cms
0018
0019 nuclearSeed = cms.EDProducer("NuclearSeedsEDProducer",
0020 producer = cms.string('TrackRefitter'),
0021 maxHits = cms.int32(5),
0022 NavigationSchool = cms.string('SimpleNavigationSchool'),
0023
0024 MeasurementTrackerName = cms.string(''),
0025 improveSeeds = cms.bool(False),
0026 rescaleErrorFactor = cms.double(1.5),
0027 ptMin = cms.double(0.3),
0028 checkCompletedTrack = cms.bool(True)
0029 )
0030
0031