Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:28:27

0001 # The following comments couldn't be translated into the new config version:
0002 
0003 # trajectory producer
0004 
0005 # pt min of the seeds
0006 
0007 # max number of hits of the primary tracks to be checked
0008 
0009 # factor to rescale cov. matrix used to find compatible measurements
0010 
0011 # if true check if nuclear interaction also on completed tracks
0012 
0013 # exprimental seeding with 3 hits (does not work yet)
0014 
0015 # NavigationSchool
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     # the measurements
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