Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-02-07 14:23:54

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def HLTRHemisphere(*args, **kwargs):
0004   mod = cms.EDFilter('HLTRHemisphere',
0005     inputTag = cms.InputTag('hltMCJetCorJetIcone5HF07'),
0006     muonTag = cms.InputTag(''),
0007     doMuonCorrection = cms.bool(False),
0008     maxMuonEta = cms.double(2.1),
0009     minJetPt = cms.double(30),
0010     maxEta = cms.double(3),
0011     maxNJ = cms.int32(7),
0012     acceptNJ = cms.bool(True),
0013     mightGet = cms.optional.untracked.vstring
0014   )
0015   for a in args:
0016     mod.update_(a)
0017   mod.update_(kwargs)
0018   return mod