File indexing completed on 2023-10-25 10:01:33
0001 import FWCore.ParameterSet.Config as cms
0002
0003 hltL3TrajectorySeedFromL1 = cms.EDProducer("TSGFromL1Muon",
0004 Filter = cms.InputTag("pixelTrackFilterByKinematicsForTSGFromL1"),
0005 FitterPSet = cms.PSet(
0006 cotThetaErrorScale = cms.double(1.0),
0007 tipErrorScale = cms.double(1.0),
0008 ComponentName = cms.string('L1MuonPixelTrackFitter'),
0009 invPtErrorScale = cms.double(1.0),
0010 phiErrorScale = cms.double(1.0),
0011 zipErrorScale = cms.double(1.0)
0012 ),
0013 RegionFactoryPSet = cms.PSet(
0014 ComponentName = cms.string('L1MuonRegionProducer'),
0015 RegionPSet = cms.PSet(
0016 originHalfLength = cms.double(15.9),
0017 originRadius = cms.double(0.1),
0018 originYPos = cms.double(0.0),
0019 ptMin = cms.double(10.0),
0020 originXPos = cms.double(0.0),
0021 originZPos = cms.double(0.0)
0022 )
0023 ),
0024 L1MuonLabel = cms.InputTag("hltL1extraParticles"),
0025 CleanerPSet = cms.PSet(
0026 diffRelPtCut = cms.double(0.2),
0027 deltaEtaCut = cms.double(0.01)
0028 ),
0029 OrderedHitsFactoryPSet = cms.PSet(
0030 ComponentName = cms.string('StandardHitPairGenerator'),
0031 SeedingLayers = cms.InputTag('PixelLayerPairs')
0032 )
0033 )
0034
0035
0036