CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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 from Configuration.StandardSequences.Eras import eras
7 
8 SiPixelDigiSource = cms.EDAnalyzer("SiPixelDigiSource",
9  TopFolderName = cms.string('Pixel'),
10  src = cms.InputTag("siPixelDigis"),
11  outputFile = cms.string('Pixel_DQM_Digi.root'),
12  saveFile = cms.untracked.bool(False),
13  isPIB = cms.untracked.bool(False),
14  slowDown = cms.untracked.bool(False),
15  modOn = cms.untracked.bool(True),
16  twoDimOn = cms.untracked.bool(True),
17  twoDimModOn = cms.untracked.bool(True),
18  #allows to have no twoD plots on Mod level (but possibly on other levels),
19  #if !twoDimOn no plots on module level anyway, no projections if twoDimOn and !twoDimModOn
20  twoDimOnlyLayDisk = cms.untracked.bool(False),
21  #allows to have only twoD plots on lay/disk level (even if layOn/diskOn), no others (and no projections)
22  #only possible if !reducedSet, twoD has no impact, for SiPixelMonitorClient hiRes must be true
23  reducedSet = cms.untracked.bool(True),
24  hiRes = cms.untracked.bool(False),
25  ladOn = cms.untracked.bool(False),
26  layOn = cms.untracked.bool(False),
27  phiOn = cms.untracked.bool(False),
28  ringOn = cms.untracked.bool(False),
29  bladeOn = cms.untracked.bool(False),
30  diskOn = cms.untracked.bool(False),
31  bigEventSize = cms.untracked.int32(1000)
32 )
33 
34 # Modify for if the phase 1 pixel detector is active
35 eras.phase1Pixel.toModify( SiPixelDigiSource, isUpgrade=cms.untracked.bool(True) )
36