CMS 3D CMS Logo

/data/git/CMSSW_5_3_11_patch5/src/DQMServices/ClientConfig/python/genericClientPSetHelper_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 def efficSet(nameIn, titleIn, numeratorIn, denominatorIn, typeIn="eff"):
00004     pset = cms.PSet(name=cms.untracked.string(nameIn),
00005                     title=cms.untracked.string(titleIn), 
00006                     numerator=cms.untracked.string(numeratorIn), 
00007                     denominator=cms.untracked.string(denominatorIn),
00008                     type=cms.untracked.string(typeIn))
00009     return pset
00010