File indexing completed on 2025-02-07 14:23:55
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def HLTCSCOverlapFilter(*args, **kwargs):
0004 mod = cms.EDFilter('HLTCSCOverlapFilter',
0005 saveTags = cms.bool(True),
0006 input = cms.InputTag('hltCsc2DRecHits'),
0007 minHits = cms.uint32(4),
0008 xWindow = cms.double(1000),
0009 yWindow = cms.double(1000),
0010 ring1 = cms.bool(True),
0011 ring2 = cms.bool(False),
0012 fillHists = cms.bool(False),
0013 mightGet = cms.optional.untracked.vstring
0014 )
0015 for a in args:
0016 mod.update_(a)
0017 mod.update_(kwargs)
0018 return mod