CMS 3D CMS Logo

DQMScaleToClient_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 dqmScaleToClient = cms.EDAnalyzer('DQMScaleToClient',
4  outputme = cms.PSet(
5  folder = cms.string(''),
6  name = cms.string(''),
7  factor = cms.double(1) # it will scale the me to 1 [h->Scale(1./integral)]
8  ),
9  inputme = cms.PSet(
10  folder = cms.string(''),
11  name = cms.string('')
12  )
13 )