Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-07-18 22:34:01

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 fastTimerServiceClient = cms.EDProducer('FastTimerServiceClient',
0004   dqmPath = cms.untracked.string('HLT/TimerService'),
0005   doPlotsVsOnlineLumi = cms.bool(True),
0006   doPlotsVsPixelLumi = cms.bool(False),
0007   doPlotsVsPU = cms.bool(True),
0008   onlineLumiME = cms.PSet(
0009     folder = cms.string('HLT/LumiMonitoring'),
0010     name = cms.string('lumiVsLS'),
0011     nbins = cms.int32(440),
0012     xmin = cms.double(0),
0013     xmax = cms.double(22000)
0014   ),
0015   pixelLumiME = cms.PSet(
0016     folder = cms.string('HLT/LumiMonitoring'),
0017     name = cms.string('lumiVsLS'),
0018     nbins = cms.int32(440),
0019     xmin = cms.double(0),
0020     xmax = cms.double(22000)
0021   ),
0022   puME = cms.PSet(
0023     folder = cms.string('HLT/LumiMonitoring'),
0024     name = cms.string('puVsLS'),
0025     nbins = cms.int32(260),
0026     xmin = cms.double(0),
0027     xmax = cms.double(130)
0028   ),
0029   fillEveryLumiSection = cms.bool(True),
0030   mightGet = cms.optional.untracked.vstring
0031 )