Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-02-07 14:24:10

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def MuonSeedGenerator(*args, **kwargs):
0004   mod = cms.EDProducer('MuonSeedGenerator',
0005     beamSpotTag = cms.InputTag('offlineBeamSpot'),
0006     scaleDT = cms.bool(True),
0007     CSCRecSegmentLabel = cms.InputTag('cscSegments'),
0008     DTRecSegmentLabel = cms.InputTag('dt4DSegments'),
0009     ME0RecSegmentLabel = cms.InputTag('me0Segments'),
0010     EnableDTMeasurement = cms.bool(True),
0011     EnableCSCMeasurement = cms.bool(True),
0012     EnableME0Measurement = cms.bool(False),
0013     crackEtas = cms.vdouble(
0014       0.2,
0015       1.6,
0016       1.7
0017     ),
0018     crackWindow = cms.double(0.04),
0019     deltaPhiSearchWindow = cms.double(0.25),
0020     deltaEtaSearchWindow = cms.double(0.2),
0021     deltaEtaCrackSearchWindow = cms.double(0.25),
0022     mightGet = cms.optional.untracked.vstring
0023   )
0024   for a in args:
0025     mod.update_(a)
0026   mod.update_(kwargs)
0027   return mod