1 |
import FWCore.ParameterSet.Config as cms
|
2 |
|
3 |
hcal_db_producer = cms.ESProducer("HcalDbProducer",
|
4 |
dump = cms.untracked.vstring(''),
|
5 |
file = cms.untracked.string('')
|
6 |
)
|
7 |
|
8 |
hcales_ascii = cms.ESSource("HcalTextCalibrations",
|
9 |
input = cms.VPSet(
|
10 |
cms.PSet(
|
11 |
object = cms.string('ElectronicsMap'),
|
12 |
#file = cms.FileInPath('andersj/HcalPlotter/data/tb2010_map_HO_HPD.txt')
|
13 |
file = cms.FileInPath('andersj/HcalPlotter/data/tb2011_map.txt')
|
14 |
),
|
15 |
cms.PSet(
|
16 |
object = cms.string('Pedestals'),
|
17 |
file = cms.FileInPath('andersj/HcalPlotter/data/ped_tb2010_000495.txt')
|
18 |
#file = cms.FileInPath('andersj/HcalPlotter/data/ped_tb2010_000495_HO_HPD.txt')
|
19 |
),
|
20 |
cms.PSet(
|
21 |
object = cms.string('Gains'),
|
22 |
file = cms.FileInPath('andersj/HcalPlotter/data/gain_tb2010_muon1.txt')
|
23 |
)
|
24 |
)
|
25 |
)
|
26 |
|
27 |
hcales_hardcode = cms.ESSource("HcalHardcodeCalibrations",
|
28 |
toGet = cms.untracked.vstring('PedestalWidths', 'LutMetadata',
|
29 |
'GainWidths', 'LUTCorrs',
|
30 |
'PFCorrs', 'QIEData',
|
31 |
'L1TriggerObjects','ZSThresholds','DcsValues',
|
32 |
'ChannelQuality','RespCorrs','TimeCorrs')
|
33 |
)
|