Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:00:27

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def PrescaleService(**kwargs):
0004   mod = cms.Service('PrescaleService',
0005     lvl1Labels = cms.vstring('default'),
0006     prescaleTable = cms.VPSet(
0007       cms.PSet(
0008         pathName = cms.string('HLTPath'),
0009         prescales = cms.vuint32(1)
0010       )
0011     ),
0012     lvl1DefaultLabel = cms.string('default'),
0013     forceDefault = cms.bool(False)
0014   )
0015   for k,v in kwargs.items():
0016     setattr(mod, k, v)
0017   return mod