File indexing completed on 2023-03-17 10:54:38
0001 import FWCore.ParameterSet.Config as cms
0002
0003 from DQM.EcalPreshowerMonitorModule.ESRawDataTask_cfi import *
0004 from DQM.EcalPreshowerMonitorModule.ESIntegrityTask_cfi import *
0005 ecalPreshowerIntegrityTask.DoLumiAnalysis = True
0006
0007
0008 from Configuration.ProcessModifiers.dqmPerLSsaving_cff import dqmPerLSsaving
0009 dqmPerLSsaving.toModify(ecalPreshowerIntegrityTask, DoLumiAnalysis = False)
0010
0011 from DQM.EcalPreshowerMonitorModule.ESFEDIntegrityTask_cfi import *
0012 from DQM.EcalPreshowerMonitorModule.ESOccupancyTask_cfi import *
0013 from DQM.EcalPreshowerMonitorModule.ESTrendTask_cfi import *
0014
0015 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
0016 dqmInfoES = DQMEDAnalyzer('DQMEventInfo',
0017 subSystemFolder = cms.untracked.string('EcalPreshower')
0018 )
0019
0020 es_dqm_source_offline = cms.Sequence(ecalPreshowerRawDataTask*ecalPreshowerFEDIntegrityTask*ecalPreshowerIntegrityTask*ecalPreshowerOccupancyTask*ecalPreshowerTrendTask)