CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
NuclearSeed_cfi.py
Go to the documentation of this file.
1 # The following comments couldn't be translated into the new config version:
2 
3 # trajectory producer
4 
5 # pt min of the seeds
6 
7 # max number of hits of the primary tracks to be checked
8 
9 # factor to rescale cov. matrix used to find compatible measurements
10 
11 # if true check if nuclear interaction also on completed tracks
12 
13 # exprimental seeding with 3 hits (does not work yet)
14 
15 # NavigationSchool
16 
17 import FWCore.ParameterSet.Config as cms
18 
19 nuclearSeed = cms.EDProducer("NuclearSeedsEDProducer",
20  producer = cms.string('TrackRefitter'),
21  maxHits = cms.int32(5),
22  NavigationSchool = cms.string('SimpleNavigationSchool'),
23  # the measurements
24  MeasurementTrackerName = cms.string(''),
25  improveSeeds = cms.bool(False),
26  rescaleErrorFactor = cms.double(1.5),
27  ptMin = cms.double(0.3),
28  checkCompletedTrack = cms.bool(True)
29 )
30 
31