CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_10_patch2/src/RecoTracker/NuclearSeedGenerator/python/NuclearSeed_cfi.py

Go to the documentation of this file.
00001 # The following comments couldn't be translated into the new config version:
00002 
00003 # trajectory producer
00004 
00005 # pt min of the seeds
00006 
00007 # max number of hits of the primary tracks to be checked
00008 
00009 # factor to rescale cov. matrix used to find compatible measurements
00010 
00011 # if true check if nuclear interaction also on completed tracks
00012 
00013 # exprimental seeding with 3 hits (does not work yet)
00014 
00015 # NavigationSchool
00016 
00017 import FWCore.ParameterSet.Config as cms
00018 
00019 nuclearSeed = cms.EDProducer("NuclearSeedsEDProducer",
00020     producer = cms.string('TrackRefitter'),
00021     maxHits = cms.int32(5),
00022     NavigationSchool = cms.string('SimpleNavigationSchool'),
00023     # the measurements
00024     MeasurementTrackerName = cms.string(''),
00025     improveSeeds = cms.bool(False),
00026     rescaleErrorFactor = cms.double(1.5),
00027     ptMin = cms.double(0.3),
00028     checkCompletedTrack = cms.bool(True)
00029 )
00030 
00031