Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-08-21 02:33:38

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def HLTP2GTTauFilter(*args, **kwargs):
0004   mod = cms.EDFilter('HLTP2GTTauFilter',
0005     saveTags = cms.bool(True),
0006     l1GTAlgoBlockTag = cms.InputTag(''),
0007     l1GTAlgoNames = cms.vstring(),
0008     minPt = cms.double(24),
0009     minN = cms.uint32(1),
0010     maxAbsEta = cms.double(1e+99),
0011     mightGet = cms.optional.untracked.vstring
0012   )
0013   for a in args:
0014     mod.update_(a)
0015   mod.update_(kwargs)
0016   return mod