Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def HcalLaserEventFilter(*args, **kwargs):
0004   mod = cms.EDFilter('HcalLaserEventFilter',
0005     vetoByRunEventNumber = cms.bool(False),
0006     vetoByHBHEOccupancy = cms.bool(True),
0007     minOccupiedHBHE = cms.uint32(4000),
0008     vetoByLaserMonitor = cms.bool(True),
0009     minLaserMonitorCharge = cms.double(5000),
0010     debug = cms.bool(False),
0011     reverseFilter = cms.bool(False),
0012     taggingMode = cms.bool(False),
0013     forceUseRecHitCollection = cms.bool(False),
0014     forceUseHcalNoiseSummary = cms.bool(False),
0015     BadRunEventNumbers = cms.vuint32(),
0016     mightGet = cms.optional.untracked.vstring
0017   )
0018   for a in args:
0019     mod.update_(a)
0020   mod.update_(kwargs)
0021   return mod