CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_4/src/DQM/SiPixelMonitorDigi/python/SiPixelMonitorDigi_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 SiPixelDigiSource = cms.EDAnalyzer("SiPixelDigiSource",
00004     src = cms.InputTag("siPixelDigis"),
00005     outputFile = cms.string('Pixel_DQM_Digi.root'),
00006     saveFile = cms.untracked.bool(False),
00007     isPIB = cms.untracked.bool(False),
00008     slowDown = cms.untracked.bool(False),
00009     modOn = cms.untracked.bool(True),
00010     twoDimOn = cms.untracked.bool(True),        
00011     twoDimModOn = cms.untracked.bool(True),     
00012     #allows to have no twoD plots on Mod level (but possibly on other levels),
00013     #if !twoDimOn no plots on module level anyway, no projections if twoDimOn and !twoDimModOn
00014     twoDimOnlyLayDisk = cms.untracked.bool(False), 
00015     #allows to have only twoD plots on lay/disk level (even if layOn/diskOn), no others (and no projections)
00016     #only possible if !reducedSet, twoD has no impact, for SiPixelMonitorClient hiRes must be true
00017     reducedSet = cms.untracked.bool(True),
00018     hiRes = cms.untracked.bool(False), 
00019     ladOn = cms.untracked.bool(False),
00020     layOn = cms.untracked.bool(False),
00021     phiOn = cms.untracked.bool(False),
00022     ringOn = cms.untracked.bool(False),
00023     bladeOn = cms.untracked.bool(False),
00024     diskOn = cms.untracked.bool(False),
00025     bigEventSize = cms.untracked.int32(1000)
00026 )
00027 
00028