CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_10/src/RecoMuon/TrackerSeedGenerator/python/TSGForRoadSearchIOpxl_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 from RecoMuon.TrackingTools.MuonErrorMatrixValues_cff import *
00004 
00005 SeedGeneratorParameters = cms.PSet(
00006     propagatorCompatibleName = cms.string('SteppingHelixPropagatorAny'),
00007     #category: MuonRSSeedGeneratorAlgorithm
00008     #0 old code inside-out
00009     #1 new code inside-out
00010     #2 new code outside-out
00011     #3 old code outside-in
00012     #4 old code inside-out from pixel
00013     option = cms.uint32(4),
00014     ComponentName = cms.string('TSGForRoadSearch'),
00015     errorMatrixPset = cms.PSet(
00016     MuonErrorMatrixValues,
00017     action = cms.string('use'),
00018     atIP = cms.bool(True)
00019     ),
00020     propagatorName = cms.string('SteppingHelixPropagatorAlong'),
00021     manySeeds = cms.bool(False),
00022     copyMuonRecHit = cms.bool(False),
00023     maxChi2 = cms.double(40.0)
00024 )
00025 
00026