File indexing completed on 2024-04-06 12:07:23
0001 import FWCore.ParameterSet.Config as cms
0002
0003 from DQM.EcalPreshowerMonitorModule.ESRawDataTask_cfi import *
0004 from DQM.EcalPreshowerMonitorModule.ESIntegrityTask_cfi import *
0005
0006 from DQM.EcalPreshowerMonitorModule.ESPedestalTask_cfi import *
0007 from DQM.EcalPreshowerMonitorModule.ESOccupancyTask_cfi import *
0008 from DQM.EcalPreshowerMonitorModule.ESTimingTask_cfi import *
0009 from DQM.EcalPreshowerMonitorModule.ESDcsInfoTask_cfi import *
0010 from DQM.EcalPreshowerMonitorModule.ESDataCertificationTask_cfi import *
0011 from DQM.EcalPreshowerMonitorModule.ESDaqInfoTask_cfi import *
0012 from DQM.EcalPreshowerMonitorModule.ESTrendTask_cfi import *
0013
0014 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
0015 dqmInfoES = DQMEDAnalyzer('DQMEventInfo',
0016 subSystemFolder = cms.untracked.string('EcalPreshower')
0017 )
0018
0019
0020 ecalPreshowerDefaultTasksSequence = cms.Sequence(ecalPreshowerRawDataTask*ecalPreshowerIntegrityTask*ecalPreshowerOccupancyTask*ecalPreshowerTimingTask*ecalPreshowerTrendTask)
0021
0022 ecalPreshowerCertificationSequence = cms.Sequence(ecalPreshowerDcsInfoTask*ecalPreshowerDataCertificationTask*ecalPreshowerDaqInfoTask)
0023
0024 ecalPreshowerLocalTasksSequence = cms.Sequence(ecalPreshowerPedestalTask)
0025
0026