CMS 3D CMS Logo

PixelLumiDQM_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
4 pixel_lumi_dqm = DQMEDAnalyzer('PixelLumiDQM',
5  pixelClusterLabel = cms.untracked.InputTag("siPixelClusters"),
6  includePixelClusterInfo = cms.untracked.bool(True),
7  includePixelQualCheckHistos = cms.untracked.bool(True),
8  # This is the correct list of modules to be ignored for 2012.
9  deadModules = cms.untracked.vuint32(),
10  # Only count pixel clusters with a minimum number of pixels.
11  minNumPixelsPerCluster = cms.untracked.int32(2),
12  # Only count pixel clusters with a minimum charge.
13  minChargePerCluster = cms.untracked.double(15000.),
14  #log file defined in class but not here as parameter
15  logFileName = cms.untracked.string('/tmp/pixel_lumi.txt')
16  )