File indexing completed on 2025-01-08 03:35:54
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def CosmicMuonSeedGenerator(*args, **kwargs):
0004 mod = cms.EDProducer('CosmicMuonSeedGenerator',
0005 EnableDTMeasurement = cms.bool(True),
0006 EnableCSCMeasurement = cms.bool(True),
0007 DTRecSegmentLabel = cms.InputTag('dt4DSegments'),
0008 CSCRecSegmentLabel = cms.InputTag('cscSegments'),
0009 MaxSeeds = cms.int32(1000),
0010 MaxDTChi2 = cms.double(300),
0011 MaxCSCChi2 = cms.double(300),
0012 ForcePointDown = cms.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