File indexing completed on 2025-02-07 14:23:54
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def HLTRFilter(*args, **kwargs):
0004 mod = cms.EDFilter('HLTRFilter',
0005 saveTags = cms.bool(True),
0006 inputTag = cms.InputTag('hltRHemisphere'),
0007 inputMetTag = cms.InputTag('hltMet'),
0008 doMuonCorrection = cms.bool(False),
0009 minR = cms.double(0.3),
0010 minMR = cms.double(100),
0011 doRPrime = cms.bool(False),
0012 acceptNJ = cms.bool(True),
0013 R2Offset = cms.double(0),
0014 MROffset = cms.double(0),
0015 RMRCut = cms.double(-999999),
0016 mightGet = cms.optional.untracked.vstring
0017 )
0018 for a in args:
0019 mod.update_(a)
0020 mod.update_(kwargs)
0021 return mod