Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 10:56:08

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 #
0004 # This object is used to make changes for different running scenarios
0005 #
0006 
0007 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
0008 SiPixelDigiSource = DQMEDAnalyzer('SiPixelDigiSource',
0009     TopFolderName = cms.string('Pixel'),
0010     src = cms.InputTag("siPixelDigis"),
0011     outputFile = cms.string('Pixel_DQM_Digi.root'),
0012     saveFile = cms.untracked.bool(False),
0013     isPIB = cms.untracked.bool(False),
0014     slowDown = cms.untracked.bool(False),
0015     modOn = cms.untracked.bool(True),
0016     perLSsaving = cms.untracked.bool(False), #driven by DQMServices/Core/python/DQMStore_cfi.py
0017     twoDimOn = cms.untracked.bool(True),    
0018     twoDimModOn = cms.untracked.bool(True),     
0019     #allows to have no twoD plots on Mod level (but possibly on other levels),
0020     #if !twoDimOn no plots on module level anyway, no projections if twoDimOn and !twoDimModOn
0021     twoDimOnlyLayDisk = cms.untracked.bool(False), 
0022     #allows to have only twoD plots on lay/disk level (even if layOn/diskOn), no others (and no projections)
0023     #only possible if !reducedSet, twoD has no impact, for SiPixelMonitorClient hiRes must be true
0024     reducedSet = cms.untracked.bool(True),
0025     hiRes = cms.untracked.bool(False), 
0026     ladOn = cms.untracked.bool(False),
0027     layOn = cms.untracked.bool(False),
0028     phiOn = cms.untracked.bool(False),
0029     ringOn = cms.untracked.bool(False),
0030     bladeOn = cms.untracked.bool(False),
0031     diskOn = cms.untracked.bool(False),
0032     bigEventSize = cms.untracked.int32(1000)
0033 )
0034 
0035 # Modify for if the phase 1 pixel detector is active
0036 from Configuration.Eras.Modifier_phase1Pixel_cff import phase1Pixel
0037 phase1Pixel.toModify( SiPixelDigiSource, isUpgrade=cms.untracked.bool(True) )
0038