Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-10-25 09:44:00

0001 # The following comments couldn't be translated into the new config version:
0002 
0003 # prescale
0004 
0005 import FWCore.ParameterSet.Config as cms
0006 
0007 #
0008 #
0009 # \author Stefano Argiro
0010 #
0011 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
0012 HcalPhiSymMon = DQMEDAnalyzer('DQMHcalPhiSymAlCaReco',
0013     # product to monitor
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     # File to save 
0023     SaveToFile = cms.untracked.bool(False),
0024     FileName = cms.untracked.string('MonitorAlCaHcalPhiSym.root'),
0025     #driven by DQMServices/Core/python/DQMStore_cfi.py
0026     perLSsaving = cms.untracked.bool(False), 
0027     # DQM folder to write to
0028     FolderName = cms.untracked.string('AlCaReco/HcalPhiSym')
0029 )
0030 
0031 
0032