File indexing completed on 2024-04-06 12:07:22
0001 import FWCore.ParameterSet.Config as cms
0002 from DQMServices.Core.DQMEDHarvester import DQMEDHarvester
0003
0004 ecalPreshowerMonitorClient = DQMEDHarvester('EcalPreshowerMonitorClient',
0005 LookupTable = cms.untracked.FileInPath('EventFilter/ESDigiToRaw/data/ES_lookup_table.dat'),
0006 enabledClients = cms.untracked.vstring('Integrity',
0007 'Summary'
0008 ),
0009 prefixME = cms.untracked.string('EcalPreshower'),
0010 verbose = cms.untracked.bool(False),
0011 debug = cms.untracked.bool(False),
0012 fitPedestal = cms.untracked.bool(True),
0013 cloneME = cms.untracked.bool(True)
0014 )