Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Major updates to L3 Muon OI SeedGenerator for high efficiency #24267

Merged
merged 5 commits into from Aug 16, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
23 changes: 23 additions & 0 deletions HLTrigger/Configuration/python/customizeHLTforCMSSW.py
Expand Up @@ -188,11 +188,34 @@ def customiseForEcalTestPR22254thresholdC(process):



def customizeHLTForL3OIPR24267(process):
for seedproducer in producers_by_type(process, "TSGForOI"):
if "hltIterL3OISeedsFromL2Muons" == seedproducer.label():
process.hltIterL3OISeedsFromL2Muons = cms.EDProducer("TSGForOIFromL2")
if "hltIterL3OISeedsFromL2MuonsOpenMu" == seedproducer.label():
process.hltIterL3OISeedsFromL2MuonsOpenMu = cms.EDProducer("TSGForOIFromL2")
if "hltIterL3OISeedsFromL2MuonsNoVtx" == seedproducer.label():
process.hltIterL3OISeedsFromL2MuonsNoVtx = cms.EDProducer("TSGForOIFromL2")
process.hltIterL3OISeedsFromL2MuonsNoVtx.src = cms.InputTag( 'hltL2Muons' )


for trackproducer in producers_by_type(process, "CkfTrackCandidateMaker"):
if "hltIterL3OITrackCandidates" in trackproducer.label():
trackproducer.reverseTrajectories =cms.bool(True)


return process





# CMSSW version specific customizations
def customizeHLTforCMSSW(process, menuType="GRun"):

# add call to action function in proper order: newest last!
# process = customiseFor12718(process)

customizeHLTForL3OIPR24267(process)

return process