CMS 3D CMS Logo

hltRechitInRegionsECAL_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 hltRechitInRegionsECAL = cms.EDProducer("HLTEcalRecHitsInRegionsProducer",
4  etaPhiRegions = cms.VPSet(cms.PSet(
5  inputColl = cms.InputTag("hltL1TEGammaFilteredCollectionProducer"),
6  maxDEta = cms.double(0.0),
7  maxDPhi = cms.double(0.0),
8  maxDeltaR = cms.double(0.35),
9  maxEt = cms.double(999999.0),
10  minEt = cms.double(5.0),
11  type = cms.string('L1EGamma')
12  )),
13  inputCollTags = cms.VInputTag("hltEcalRecHitL1Seeded:EcalRecHitsEB", "hltEcalRecHitL1Seeded:EcalRecHitsEE"),
14  outputProductNames = cms.vstring(
15  'EcalRecHitsEB',
16  'EcalRecHitsEE'
17  )
18 )