CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/SimCalorimetry/HcalTestBeam/python/hardwired_conditions_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # HCAL setup suitable for MC simulation and production (no ElectronicsMapping)
00004 hcal_db_producer = cms.ESProducer("HcalDbProducer")
00005 
00006 hcal_es_hardcode = cms.ESSource("HcalHardcodeCalibrations",
00007     fromDDD = cms.untracked.bool(False),
00008     toGet = cms.untracked.vstring('Pedestals', 
00009         'PedestalWidths', 
00010         'Gains', 
00011         'GainWidths', 
00012         'QIEShape', 
00013         'QIEData', 
00014         'ChannelQuality', 
00015         'ElectronicsMap')
00016 )
00017 
00018 
00019