CMS 3D CMS Logo

MonitorAlCaHcalPhisym_cfi.py
Go to the documentation of this file.
1 # The following comments couldn't be translated into the new config version:
2 
3 # prescale
4 
5 import FWCore.ParameterSet.Config as cms
6 
7 #
8 #
9 # \author Stefano Argiro
10 #
11 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
12 HcalPhiSymMon = DQMEDAnalyzer('DQMHcalPhiSymAlCaReco',
13  # product to monitor
14  hbheInputMB = cms.InputTag("hbherecoMB"),
15  hoInputMB = cms.InputTag("horecoMB"),
16  hfInputMB = cms.InputTag("hfrecoMBspecial"),
17  hbheInputNoise = cms.InputTag("hbherecoNoise"),
18  hoInputNoise = cms.InputTag("horecoNoise"),
19  hfInputNoise = cms.InputTag("hfrecoNoise"),
20  rawInputLabel=cms.InputTag("rawDataCollector"),
21  period = cms.uint32(4096),
22  # File to save
23  SaveToFile = cms.untracked.bool(False),
24  FileName = cms.untracked.string('MonitorAlCaHcalPhiSym.root'),
25  #driven by DQMServices/Core/python/DQMStore_cfi.py
26  perLSsaving = cms.untracked.bool(False),
27  # DQM folder to write to
28  FolderName = cms.untracked.string('AlCaReco/HcalPhiSym')
29 )
30 
31 
32