Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def L1TStage2EtSumComparison(*args, **kwargs):
0004   mod = cms.EDProducer('L1TStage2EtSumComparison',
0005     collection1 = cms.InputTag('collection1'),
0006     collection2 = cms.InputTag('collection2'),
0007     checkBxRange = cms.bool(True),
0008     checkCollSizePerBx = cms.bool(True),
0009     checkObject = cms.bool(True),
0010     mightGet = cms.optional.untracked.vstring
0011   )
0012   for a in args:
0013     mod.update_(a)
0014   mod.update_(kwargs)
0015   return mod