Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-09-26 05:05:46

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def AlCaHcalNoiseProducer(*args, **kwargs):
0004   mod = cms.EDProducer('AlCaHcalNoiseProducer',
0005     JetSource = cms.InputTag('iterativeCone5CaloJets'),
0006     MetSource = cms.InputTag('met'),
0007     TowerSource = cms.InputTag('towerMaker'),
0008     UseJet = cms.bool(True),
0009     UseMET = cms.bool(False),
0010     MetCut = cms.double(0),
0011     JetMinE = cms.double(20),
0012     JetHCALminEnergyFraction = cms.double(0.98),
0013     hbheInput = cms.InputTag('hbhereco'),
0014     hfInput = cms.InputTag('hfreco'),
0015     hoInput = cms.InputTag('horeco'),
0016     ecalInputs = cms.VInputTag(
0017       'ecalRecHit:EcalRecHitsEB',
0018       'ecalRecHit:EcalRecHitsEE'
0019     ),
0020     ecalPSInput = cms.InputTag('ecalPreshowerRecHit', 'EcalRecHitsES'),
0021     rawInput = cms.InputTag('rawDataCollector'),
0022     mightGet = cms.optional.untracked.vstring
0023   )
0024   for a in args:
0025     mod.update_(a)
0026   mod.update_(kwargs)
0027   return mod