Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-09-26 05:06:15

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def HiPuRhoProducer(*args, **kwargs):
0004   mod = cms.EDProducer('HiPuRhoProducer',
0005     src = cms.InputTag('PFTowers'),
0006     medianWindowWidth = cms.int32(2),
0007     towSigmaCut = cms.double(5),
0008     puPtMin = cms.double(15),
0009     rParam = cms.double(0.3),
0010     nSigmaPU = cms.double(1),
0011     radiusPU = cms.double(0.5),
0012     minimumTowersFraction = cms.double(0.7),
0013     dropZeroTowers = cms.bool(True),
0014     mightGet = cms.optional.untracked.vstring
0015   )
0016   for a in args:
0017     mod.update_(a)
0018   mod.update_(kwargs)
0019   return mod