Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:25:45

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # re-calibrated rechit producer
0004 ecalRecHit = cms.EDProducer("EcalRecalibRecHitProducer",
0005     doEnergyScale = cms.bool(False),
0006     doEnergyScaleInverse = cms.bool(False),
0007     doIntercalib = cms.bool(False),
0008     doIntercalibInverse = cms.bool(False),
0009     EERecHitCollection = cms.InputTag("ecalRecHit","EcalRecHitsEE"),
0010     EBRecHitCollection = cms.InputTag("ecalRecHit","EcalRecHitsEB"),
0011     doLaserCorrections = cms.bool(False),
0012     doLaserCorrectionsInverse = cms.bool(False),
0013     EBRecalibRecHitCollection = cms.string('EcalRecHitsEB'),
0014     EERecalibRecHitCollection = cms.string('EcalRecHitsEE')
0015 )