CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_6_2_5/src/RecoLocalCalo/EcalRecProducers/python/ecalRecalibRecHit_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # re-calibrated rechit producer
00004 ecalRecHit = cms.EDProducer("EcalRecalibRecHitProducer",
00005     doEnergyScale = cms.bool(False),
00006     doEnergyScaleInverse = cms.bool(False),
00007     doIntercalib = cms.bool(False),
00008     doIntercalibInverse = cms.bool(False),
00009     EERecHitCollection = cms.InputTag("ecalRecHit","EcalRecHitsEE"),
00010     EBRecHitCollection = cms.InputTag("ecalRecHit","EcalRecHitsEB"),
00011     doLaserCorrections = cms.bool(False),
00012     doLaserCorrectionsInverse = cms.bool(False),
00013     EBRecalibRecHitCollection = cms.string('EcalRecHitsEB'),
00014     EERecalibRecHitCollection = cms.string('EcalRecHitsEE')
00015 )