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

Print function migration for L1TriggerConfig_GMTConfigProducers #24039

Merged
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
@@ -1,3 +1,4 @@
from __future__ import print_function
import FWCore.ParameterSet.Config as cms

# LUT generator process
Expand Down Expand Up @@ -65,7 +66,7 @@
# For a known subsystem key (MySubsystemKey):
# [x] Works!

print "Specifying GMT key"
print("Specifying GMT key")
process.load("CondTools.L1Trigger.L1TriggerKeyDummy_cff")
process.L1TriggerKeyDummy.objectKeys = cms.VPSet()
process.L1TriggerKeyDummy.label = cms.string('SubsystemKeysOnly')
Expand Down Expand Up @@ -120,9 +121,9 @@
process.L1MuGMTParametersOnlineProducer.ignoreVersionMismatch = True

# load the GMT simulator
print "Before load"
print("Before load")
process.load("L1Trigger.GlobalMuonTrigger.gmtDigis_cfi")
print "After load"
print("After load")

# Clear event data
process.gmtDigis.DTCandidates = cms.InputTag("none", "")
Expand Down