Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-09-26 05:06:14

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def HLTEcalRecHitsInRegionsProducer(*args, **kwargs):
0004   mod = cms.EDProducer('HLTEcalRecHitsInRegionsProducer',
0005     outputProductNames = cms.vstring('EcalRegionalRecHitsEB'),
0006     inputCollTags = cms.VInputTag('hltHcalDigis'),
0007     etaPhiRegions = cms.VPSet(
0008       cms.PSet(
0009         inputColl = cms.InputTag('hltEgammaCandidates'),
0010         maxDEta = cms.double(0),
0011         maxDPhi = cms.double(0),
0012         maxDeltaR = cms.double(0.5),
0013         maxEt = cms.double(-1),
0014         minEt = cms.double(-1),
0015         type = cms.string('RecoEcalCandidate')
0016       )
0017     ),
0018     mightGet = cms.optional.untracked.vstring
0019   )
0020   for a in args:
0021     mod.update_(a)
0022   mod.update_(kwargs)
0023   return mod