Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def AlignmentCSCTrackSelectorModule(*args, **kwargs):
0004   mod = cms.EDFilter('AlignmentCSCTrackSelectorModule',
0005     src = cms.InputTag(''),
0006     stationA = cms.int32(0),
0007     stationB = cms.int32(0),
0008     minHitsDT = cms.int32(0),
0009     minHitsPerStation = cms.int32(0),
0010     maxHitsPerStation = cms.int32(0),
0011     filter = cms.bool(False),
0012     throwOnMissing = cms.untracked.bool(True),
0013     mightGet = cms.optional.untracked.vstring
0014   )
0015   for a in args:
0016     mod.update_(a)
0017   mod.update_(kwargs)
0018   return mod