Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:08:11

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
0004 pixel_lumi_dqm  = DQMEDAnalyzer('PixelLumiDQM',
0005                                  pixelClusterLabel = cms.untracked.InputTag("siPixelClusters"),
0006                                  includePixelClusterInfo = cms.untracked.bool(True),
0007                                  includePixelQualCheckHistos = cms.untracked.bool(True),
0008                                  # This is the correct list of modules to be ignored for 2012.
0009                                  deadModules = cms.untracked.vuint32(),
0010                                  # Only count pixel clusters with a minimum number of pixels.
0011                                  minNumPixelsPerCluster = cms.untracked.int32(2),
0012                                  # Only count pixel clusters with a minimum charge.
0013                                  minChargePerCluster = cms.untracked.double(15000.),
0014                                  #log file defined in class but not here as parameter
0015                                  logFileName = cms.untracked.string('/tmp/pixel_lumi.txt')
0016                                  )