Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def HLTLevel1Jet(*args, **kwargs):
0004   mod = cms.EDFilter('HLTLevel1Jet',
0005     saveTags = cms.bool(True),
0006     inputTag = cms.InputTag('hltCollection'),
0007     triggerType = cms.int32(0),
0008     MinE = cms.double(-1),
0009     MinPt = cms.double(-1),
0010     MinMass = cms.double(-1),
0011     MaxMass = cms.double(-1),
0012     MinEta = cms.double(-1),
0013     MaxEta = cms.double(-1),
0014     MinN = cms.int32(1),
0015     mightGet = cms.optional.untracked.vstring
0016   )
0017   for a in args:
0018     mod.update_(a)
0019   mod.update_(kwargs)
0020   return mod