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

Era modifier updated from Run3 to Run3_2024 in dqm client configs #45634

Merged
merged 1 commit into from
Aug 27, 2024
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import FWCore.ParameterSet.Config as cms

import sys
from Configuration.Eras.Era_Run3_cff import Run3
process = cms.Process("L1TStage2DQM", Run3)
from Configuration.Eras.Era_Run3_2024_cff import Run3_2024
process = cms.Process("L1TStage2DQM", Run3_2024)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just out of curiosity, why is this change needed in this client ? (as opposed to changing only l1tstage2emulator_dqm)

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this is not strictly necessary, but if it doesn't change the functionality I would apply the change. It'll be required if we implement something like this to L1T DQM clients


unitTest = False
if 'unitTest=True' in sys.argv:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import FWCore.ParameterSet.Config as cms

import sys
from Configuration.Eras.Era_Run3_cff import Run3
process = cms.Process("L1TStage2EmulatorDQM", Run3)
from Configuration.Eras.Era_Run3_2024_cff import Run3_2024
process = cms.Process("L1TStage2EmulatorDQM", Run3_2024)

unitTest = False
if 'unitTest=True' in sys.argv:
Expand Down