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 HFJetShowerShape(*args, **kwargs):
0004   mod = cms.EDProducer('HFJetShowerShape',
0005     jets = cms.InputTag('ak4PFJetsCHS'),
0006     vertices = cms.InputTag('offlineSlimmedPrimaryVertices'),
0007     jetPtThreshold = cms.double(25),
0008     jetEtaThreshold = cms.double(2.9),
0009     hfTowerEtaWidth = cms.double(0.175),
0010     hfTowerPhiWidth = cms.double(0.175),
0011     vertexRecoEffcy = cms.double(0.7),
0012     offsetPerPU = cms.double(0.4),
0013     jetReferenceRadius = cms.double(0.4),
0014     stripPtThreshold = cms.double(10),
0015     widthPtThreshold = cms.double(3),
0016     mightGet = cms.optional.untracked.vstring
0017   )
0018   for a in args:
0019     mod.update_(a)
0020   mod.update_(kwargs)
0021   return mod