CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
default_text_conditions_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # HCAL setup suitable for MC simulation and production (no ElectronicsMapping)
4 hcal_db_producer = cms.ESProducer("HcalDbProducer")
5 
6 es_ascii = cms.ESSource("HcalTextCalibrations",
7  input = cms.VPSet(cms.PSet(
8  object = cms.string('Pedestals'),
9  file = cms.FileInPath('CondFormats/HcalObjects/data/pedestals_hardcoded.txt')
10  ),
11  cms.PSet(
12  object = cms.string('PedestalWidths'),
13  file = cms.FileInPath('CondFormats/HcalObjects/data/pedestal_widths_hardcoded.txt')
14  ),
15  cms.PSet(
16  object = cms.string('Gains'),
17  file = cms.FileInPath('CondFormats/HcalObjects/data/gains_hardcoded.txt')
18  ),
19  cms.PSet(
20  object = cms.string('GainWidths'),
21  file = cms.FileInPath('CondFormats/HcalObjects/data/gain_widths_hardcoded.txt')
22  ),
23  cms.PSet(
24  object = cms.string('QIEData'),
25  file = cms.FileInPath('CondFormats/HcalObjects/data/qie_hardcoded.txt')
26  ),
27  cms.PSet(
28  object = cms.string('ElectronicsMap'),
29  file = cms.FileInPath('CondFormats/HcalObjects/data/emap_tb2006_v7.txt')
30  ),
31  cms.PSet(
32  object = cms.string('ChannelQuality'),
33  file = cms.FileInPath('CondFormats/HcalObjects/data/quality_hardcoded.txt')
34  ))
35 )
36 
37