Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:15:56

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 hltRechitInRegionsECAL = cms.EDProducer("HLTEcalRecHitsInRegionsProducer",
0004     etaPhiRegions = cms.VPSet(cms.PSet(
0005         inputColl = cms.InputTag("hltL1TEGammaFilteredCollectionProducer"),
0006         maxDEta = cms.double(0.0),
0007         maxDPhi = cms.double(0.0),
0008         maxDeltaR = cms.double(0.35),
0009         maxEt = cms.double(999999.0),
0010         minEt = cms.double(5.0),
0011         type = cms.string('L1P2GTCandidate')
0012     )),
0013     inputCollTags = cms.VInputTag("hltEcalRecHitL1Seeded:EcalRecHitsEB", "hltEcalRecHitL1Seeded:EcalRecHitsEE"),
0014     outputProductNames = cms.vstring(
0015         'EcalRecHitsEB',
0016         'EcalRecHitsEE'
0017     )
0018 )