CMS 3D CMS Logo

SiPixelMonitorDigi_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #
4 # This object is used to make changes for different running scenarios
5 #
6 
7 SiPixelDigiSource = cms.EDAnalyzer("SiPixelDigiSource",
8  TopFolderName = cms.string('Pixel'),
9  src = cms.InputTag("siPixelDigis"),
10  outputFile = cms.string('Pixel_DQM_Digi.root'),
11  saveFile = cms.untracked.bool(False),
12  isPIB = cms.untracked.bool(False),
13  slowDown = cms.untracked.bool(False),
14  modOn = cms.untracked.bool(True),
15  twoDimOn = cms.untracked.bool(True),
16  twoDimModOn = cms.untracked.bool(True),
17  #allows to have no twoD plots on Mod level (but possibly on other levels),
18  #if !twoDimOn no plots on module level anyway, no projections if twoDimOn and !twoDimModOn
19  twoDimOnlyLayDisk = cms.untracked.bool(False),
20  #allows to have only twoD plots on lay/disk level (even if layOn/diskOn), no others (and no projections)
21  #only possible if !reducedSet, twoD has no impact, for SiPixelMonitorClient hiRes must be true
22  reducedSet = cms.untracked.bool(True),
23  hiRes = cms.untracked.bool(False),
24  ladOn = cms.untracked.bool(False),
25  layOn = cms.untracked.bool(False),
26  phiOn = cms.untracked.bool(False),
27  ringOn = cms.untracked.bool(False),
28  bladeOn = cms.untracked.bool(False),
29  diskOn = cms.untracked.bool(False),
30  bigEventSize = cms.untracked.int32(1000)
31 )
32 
33 # Modify for if the phase 1 pixel detector is active
34 from Configuration.Eras.Modifier_phase1Pixel_cff import phase1Pixel
35 phase1Pixel.toModify( SiPixelDigiSource, isUpgrade=cms.untracked.bool(True) )
36