CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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 from Configuration.StandardSequences.Eras import eras
7 
8 SiPixelClusterSource = cms.EDAnalyzer("SiPixelClusterSource",
9  TopFolderName = cms.string('Pixel'),
10  src = cms.InputTag("siPixelClusters"),
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 eras.phase1Pixel.toModify( SiPixelClusterSource, isUpgrade=cms.untracked.bool(True) )