1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
import FWCore.ParameterSet.Config as cms
from DQM.EcalPreshowerMonitorModule.ESRawDataTask_cfi import *
from DQM.EcalPreshowerMonitorModule.ESIntegrityTask_cfi import *
#from DQM.EcalPreshowerMonitorModule.ESFEDIntegrityTask_cfi import *
from DQM.EcalPreshowerMonitorModule.ESPedestalTask_cfi import *
from DQM.EcalPreshowerMonitorModule.ESOccupancyTask_cfi import *
from DQM.EcalPreshowerMonitorModule.ESTimingTask_cfi import *
from DQM.EcalPreshowerMonitorModule.ESDcsInfoTask_cfi import *
from DQM.EcalPreshowerMonitorModule.ESDataCertificationTask_cfi import *
from DQM.EcalPreshowerMonitorModule.ESDaqInfoTask_cfi import *
from DQM.EcalPreshowerMonitorModule.ESTrendTask_cfi import *
from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
dqmInfoES = DQMEDAnalyzer('DQMEventInfo',
subSystemFolder = cms.untracked.string('EcalPreshower')
)
#ecalPreshowerDefaultTasksSequence = cms.Sequence(ecalPreshowerOccupancyTask*ecalPreshowerPedestalTask)
ecalPreshowerDefaultTasksSequence = cms.Sequence(ecalPreshowerRawDataTask*ecalPreshowerIntegrityTask*ecalPreshowerOccupancyTask*ecalPreshowerTimingTask*ecalPreshowerTrendTask)
ecalPreshowerCertificationSequence = cms.Sequence(ecalPreshowerDcsInfoTask*ecalPreshowerDataCertificationTask*ecalPreshowerDaqInfoTask)
ecalPreshowerLocalTasksSequence = cms.Sequence(ecalPreshowerPedestalTask)
|