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