CMS 3D CMS Logo

hltTiclSeedingL1_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 hltTiclSeedingL1 = cms.EDProducer("TICLSeedingRegionProducer",
4  seedingPSet = cms.PSet(
5  algo_verbosity = cms.int32(0),
6  l1GTCandColl = cms.InputTag("l1tGTProducer", "CL2Photons"),
7  maxAbsEta = cms.double(4.0),
8  minAbsEta = cms.double(1.3),
9  minPt = cms.double(5.0),
10  quality = cms.int32(0b0100),
11  qualityIsMask = cms.bool(True),
12  applyQuality = cms.bool(True),
13  type = cms.string('SeedingRegionByL1')
14  )
15 )