Back to home page

Project CMSSW displayed by LXR

 
 

    


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 from DQM.EcalPreshowerMonitorModule.ESFEDIntegrityTask_cfi import *
0006 #from DQM.EcalPreshowerMonitorModule.ESPedestalTask_cfi import *
0007 from DQM.EcalPreshowerMonitorModule.ESOccupancyTask_cfi import *
0008 from DQM.EcalPreshowerMonitorModule.ESTimingTask_cfi import *
0009 
0010 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
0011 dqmInfoES = DQMEDAnalyzer('DQMEventInfo',
0012                          subSystemFolder = cms.untracked.string('EcalPreshower')
0013                          )
0014 
0015 #ecalPreshowerDefaultTasksSequence = cms.Sequence(ecalPreshowerOccupancyTask*ecalPreshowerPedestalTask)
0016 ecalPreshowerDefaultTasksSequence = cms.Sequence(ecalPreshowerRawDataTask*ecalPreshowerFEDIntegrityTask*ecalPreshowerIntegrityTask*ecalPreshowerOccupancyTask*ecalPreshowerTimingTask)
0017