CMS 3D CMS Logo

SiPixelMonitorRawData_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 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
8 SiPixelRawDataErrorSource = DQMEDAnalyzer('SiPixelRawDataErrorSource',
9  TopFolderName = cms.string('Pixel'),
10  src = cms.InputTag("siPixelDigis"),
11  outputFile = cms.string('Pixel_DQM_Error.root'),
12  saveFile = cms.untracked.bool(False),
13  isPIB = cms.untracked.bool(False),
14  slowDown = cms.untracked.bool(False),
15  reducedSet = cms.untracked.bool(False),
16  modOn = cms.untracked.bool(True),
17  ladOn = cms.untracked.bool(False),
18  bladeOn = cms.untracked.bool(False)
19 )
20 
21 # Modify for if the phase 1 pixel detector is active
22 from Configuration.Eras.Modifier_phase1Pixel_cff import phase1Pixel
23 phase1Pixel.toModify( SiPixelRawDataErrorSource, isUpgrade=cms.untracked.bool(True) )