File indexing completed on 2023-10-25 09:44:00
0001
0002
0003
0004
0005 import FWCore.ParameterSet.Config as cms
0006
0007
0008
0009
0010
0011 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
0012 HcalPhiSymMon = DQMEDAnalyzer('DQMHcalPhiSymAlCaReco',
0013
0014 hbheInputMB = cms.InputTag("hbherecoMB"),
0015 hoInputMB = cms.InputTag("horecoMB"),
0016 hfInputMB = cms.InputTag("hfrecoMBspecial"),
0017 hbheInputNoise = cms.InputTag("hbherecoNoise"),
0018 hoInputNoise = cms.InputTag("horecoNoise"),
0019 hfInputNoise = cms.InputTag("hfrecoNoise"),
0020 rawInputLabel=cms.InputTag("rawDataCollector"),
0021 period = cms.uint32(4096),
0022
0023 SaveToFile = cms.untracked.bool(False),
0024 FileName = cms.untracked.string('MonitorAlCaHcalPhiSym.root'),
0025
0026 perLSsaving = cms.untracked.bool(False),
0027
0028 FolderName = cms.untracked.string('AlCaReco/HcalPhiSym')
0029 )
0030
0031
0032