CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ALCARECOEcalCalEtaCalib_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #------------------------------------------------
4 #AlCaReco eta calibration:
5 #------------------------------------------------
8 
9 #apply laser corrections
10 
11 ecalEtaCorrected = RecoLocalCalo.EcalRecProducers.ecalRecalibRecHit_cfi.ecalRecHit.clone(
12  doEnergyScale = cms.bool(False),
13  doIntercalib = cms.bool(False),
14  EERecHitCollection = cms.InputTag("hltAlCaEtaRecHitsFilter","etaEcalRecHitsEE"),
15  EBRecHitCollection = cms.InputTag("hltAlCaEtaRecHitsFilter","etaEcalRecHitsEB"),
16  doLaserCorrections = cms.bool(True),
17  EBRecalibRecHitCollection = cms.string('etaEcalRecHitsEB'),
18  EERecalibRecHitCollection = cms.string('etaEcalRecHitsEE')
19 )
20 
21 
22 seqALCARECOEcalCalEtaCalib = cms.Sequence(ecaletaCalibHLT*ecalEtaCorrected)