CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/RecoMuon/TrackerSeedGenerator/python/TSGFromL1_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 hltL3TrajectorySeedFromL1 = cms.EDProducer("TSGFromL1Muon",
00004     FilterPSet = cms.PSet(
00005         nSigmaInvPtTolerance = cms.double(2.0),
00006         nSigmaTipMaxTolerance = cms.double(3.0),
00007         ComponentName = cms.string('PixelTrackFilterByKinematics'),
00008         chi2 = cms.double(1000.0),
00009         ptMin = cms.double(10.0),
00010         tipMax = cms.double(0.1)
00011     ),
00012     FitterPSet = cms.PSet(
00013         cotThetaErrorScale = cms.double(1.0),
00014         tipErrorScale = cms.double(1.0),
00015         ComponentName = cms.string('L1MuonPixelTrackFitter'),
00016         invPtErrorScale = cms.double(1.0),
00017         phiErrorScale = cms.double(1.0),
00018         zipErrorScale = cms.double(1.0)
00019     ),
00020     RegionFactoryPSet = cms.PSet(
00021         ComponentName = cms.string('L1MuonRegionProducer'),
00022         RegionPSet = cms.PSet(
00023             originHalfLength = cms.double(15.9),
00024             originRadius = cms.double(0.1),
00025             originYPos = cms.double(0.0),
00026             ptMin = cms.double(10.0),
00027             originXPos = cms.double(0.0),
00028             originZPos = cms.double(0.0)
00029         )
00030     ),
00031     L1MuonLabel = cms.InputTag("hltL1extraParticles"),
00032     CleanerPSet = cms.PSet(
00033         ComponentName = cms.string('PixelTrackCleanerBySharedHits'),
00034         diffRelPtCut = cms.double(0.2),
00035         deltaEtaCut = cms.double(0.01)
00036     ),
00037     OrderedHitsFactoryPSet = cms.PSet(
00038         ComponentName = cms.string('StandardHitPairGenerator'),
00039         SeedingLayers = cms.string('PixelLayerPairs')
00040     )
00041 )
00042 
00043 
00044