CMS 3D CMS Logo

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