CMS 3D CMS Logo

TSGFromL1_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 hltL3TrajectorySeedFromL1 = cms.EDProducer("TSGFromL1Muon",
4  Filter = cms.InputTag("pixelTrackFilterByKinematicsForTSGFromL1"),
5  FitterPSet = cms.PSet(
6  cotThetaErrorScale = cms.double(1.0),
7  tipErrorScale = cms.double(1.0),
8  ComponentName = cms.string('L1MuonPixelTrackFitter'),
9  invPtErrorScale = cms.double(1.0),
10  phiErrorScale = cms.double(1.0),
11  zipErrorScale = cms.double(1.0)
12  ),
13  RegionFactoryPSet = cms.PSet(
14  ComponentName = cms.string('L1MuonRegionProducer'),
15  RegionPSet = cms.PSet(
16  originHalfLength = cms.double(15.9),
17  originRadius = cms.double(0.1),
18  originYPos = cms.double(0.0),
19  ptMin = cms.double(10.0),
20  originXPos = cms.double(0.0),
21  originZPos = cms.double(0.0)
22  )
23  ),
24  L1MuonLabel = cms.InputTag("hltL1extraParticles"),
25  CleanerPSet = cms.PSet(
26  diffRelPtCut = cms.double(0.2),
27  deltaEtaCut = cms.double(0.01)
28  ),
29  OrderedHitsFactoryPSet = cms.PSet(
30  ComponentName = cms.string('StandardHitPairGenerator'),
31  SeedingLayers = cms.InputTag('PixelLayerPairs')
32  )
33 )
34 
35 
36