CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ecalRecalibRecHit_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # re-calibrated rechit producer
4 ecalRecHit = cms.EDProducer("EcalRecalibRecHitProducer",
5  doEnergyScale = cms.bool(False),
6  doEnergyScaleInverse = cms.bool(False),
7  doIntercalib = cms.bool(False),
8  doIntercalibInverse = cms.bool(False),
9  EERecHitCollection = cms.InputTag("ecalRecHit","EcalRecHitsEE"),
10  EBRecHitCollection = cms.InputTag("ecalRecHit","EcalRecHitsEB"),
11  doLaserCorrections = cms.bool(False),
12  doLaserCorrectionsInverse = cms.bool(False),
13  EBRecalibRecHitCollection = cms.string('EcalRecHitsEB'),
14  EERecalibRecHitCollection = cms.string('EcalRecHitsEE')
15 )