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 HLTNVFilter(*args, **kwargs):
0004   mod = cms.EDFilter('HLTNVFilter',
0005     saveTags = cms.bool(True),
0006     inputJetTag = cms.InputTag('iterativeCone5CaloJets'),
0007     inputMETTag = cms.InputTag('hlt1MET60'),
0008     minEtJet2 = cms.double(20),
0009     minEtJet1 = cms.double(80),
0010     minNV = cms.double(0.1),
0011     mightGet = cms.optional.untracked.vstring
0012   )
0013   for a in args:
0014     mod.update_(a)
0015   mod.update_(kwargs)
0016   return mod