File indexing completed on 2025-01-12 23:41:27
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def EcalRecalibRecHitProducer(*args, **kwargs):
0004 mod = cms.EDProducer('EcalRecalibRecHitProducer',
0005 EBRecHitCollection = cms.InputTag('ecalRecHit', 'EcalRecHitsEB'),
0006 EERecHitCollection = cms.InputTag('ecalRecHit', 'EcalRecHitsEE'),
0007 EBRecalibRecHitCollection = cms.string('EcalRecHitsEB'),
0008 EERecalibRecHitCollection = cms.string('EcalRecHitsEE'),
0009 doEnergyScale = cms.bool(False),
0010 doIntercalib = cms.bool(False),
0011 doLaserCorrections = cms.bool(False),
0012 doEnergyScaleInverse = cms.bool(False),
0013 doIntercalibInverse = cms.bool(False),
0014 doLaserCorrectionsInverse = cms.bool(False),
0015 mightGet = cms.optional.untracked.vstring
0016 )
0017 for a in args:
0018 mod.update_(a)
0019 mod.update_(kwargs)
0020 return mod