CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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 HcalPhiSymMon = cms.EDAnalyzer("DQMHcalPhiSymAlCaReco",
12  # product to monitor
13  hbheInputMB = cms.InputTag("hbherecoMB"),
14  hoInputMB = cms.InputTag("horecoMB"),
15  hfInputMB = cms.InputTag("hfrecoMBspecial"),
16  hbheInputNoise = cms.InputTag("hbherecoNoise"),
17  hoInputNoise = cms.InputTag("horecoNoise"),
18  hfInputNoise = cms.InputTag("hfrecoNoise"),
19  rawInputLabel=cms.InputTag("rawDataCollector"),
20  period = cms.uint32(4096),
21  # File to save
22  SaveToFile = cms.untracked.bool(False),
23  FileName = cms.untracked.string('MonitorAlCaHcalPhiSym.root'),
24  # DQM folder to write to
25  FolderName = cms.untracked.string('AlCaReco/HcalPhiSym')
26 )
27 
28 
29