Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-10-25 09:43:53

0001 import FWCore.ParameterSet.Config as cms
0002 from DQMServices.Core.DQMEDHarvester import DQMEDHarvester
0003 
0004 dqmScaleToClient = DQMEDHarvester('DQMScaleToClient',
0005   outputme = cms.PSet(
0006     folder = cms.string(''),
0007     name = cms.string(''),
0008     factor = cms.double(1) # it will scale the me to 1 [h->Scale(1./integral)]
0009   ),
0010   inputme = cms.PSet(
0011     folder = cms.string(''),
0012     name = cms.string('')
0013   )
0014 )