CMS 3D CMS Logo

ticlSeedingL1_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 ticlSeedingL1 = cms.EDProducer("TICLSeedingRegionProducer",
4  seedingPSet = cms.PSet(
5  algo_verbosity = cms.int32(0),
6  endcapScalings = cms.vdouble(3.17445, 1.13219, 0.0),
7  l1TkEmColl = cms.InputTag("l1tLayer1EG","L1TkEmEE"),
8  maxAbsEta = cms.double(4.0),
9  minAbsEta = cms.double(1.3),
10  minPt = cms.double(5.0),
11  quality = cms.int32(4),
12  qualityIsMask = cms.bool(True),
13  applyQuality = cms.bool(True),
14  type = cms.string('SeedingRegionByL1')
15  )
16 )