CMS 3D CMS Logo

SiPixelMonitorCluster_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 SiPixelClusterSource = DQMEDAnalyzer('SiPixelClusterSource',
9  TopFolderName = cms.string('Pixel'),
10  src = cms.InputTag("siPixelClusters"),
11  digisrc = cms.InputTag("siPixelDigis"),
12  outputFile = cms.string('Pixel_DQM_Cluster.root'),
13  saveFile = cms.untracked.bool(False),
14  slowDown = cms.untracked.bool(False),
15  isPIB = cms.untracked.bool(False),
16  modOn = cms.untracked.bool(True),
17  twoDimOn = cms.untracked.bool(True),
18  reducedSet = cms.untracked.bool(True),
19  ladOn = cms.untracked.bool(False),
20  layOn = cms.untracked.bool(False),
21  phiOn = cms.untracked.bool(False),
22  ringOn = cms.untracked.bool(False),
23  bladeOn = cms.untracked.bool(False),
24  diskOn = cms.untracked.bool(False),
25  smileyOn = cms.untracked.bool(True),
26  bigEventSize = cms.untracked.int32(100)
27 )
28 
29 # Modify for if the phase 1 pixel detector is active
30 from Configuration.Eras.Modifier_phase1Pixel_cff import phase1Pixel
31 phase1Pixel.toModify( SiPixelClusterSource, isUpgrade=cms.untracked.bool(True) )