Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-12-21 03:54:26

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def Phase2HLTMuonSelectorForL3(*args, **kwargs):
0004   mod = cms.EDProducer('Phase2HLTMuonSelectorForL3',
0005     l1TkMuons = cms.InputTag('l1tTkMuonsGmt'),
0006     l2MuonsUpdVtx = cms.InputTag('hltL2MuonsFromL1TkMuon', 'UpdatedAtVtx'),
0007     l3Tracks = cms.InputTag('hltIter2Phase2L3FromL1TkMuonMerged'),
0008     IOFirst = cms.bool(True),
0009     matchingDr = cms.double(0.02),
0010     applyL3Filters = cms.bool(True),
0011     MinNhits = cms.int32(1),
0012     MaxNormalizedChi2 = cms.double(5),
0013     MinNhitsMuons = cms.int32(0),
0014     MinNhitsPixel = cms.int32(1),
0015     MinNhitsTracker = cms.int32(6),
0016     MaxPtDifference = cms.double(999),
0017     mightGet = cms.optional.untracked.vstring
0018   )
0019   for a in args:
0020     mod.update_(a)
0021   mod.update_(kwargs)
0022   return mod