Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def HLTL1NumberFilter(*args, **kwargs):
0004   mod = cms.EDFilter('HLTL1NumberFilter',
0005     rawInput = cms.InputTag('source'),
0006     period = cms.uint32(4096),
0007     invert = cms.bool(True),
0008     fedId = cms.int32(812),
0009     useTCDSEventNumber = cms.bool(False),
0010     mightGet = cms.optional.untracked.vstring
0011   )
0012   for a in args:
0013     mod.update_(a)
0014   mod.update_(kwargs)
0015   return mod