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

[12_5_X] Fix HI rawDataInputTag for beamhlt DQM client #40108

Merged
Merged
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
Expand Up @@ -132,14 +132,10 @@
# Import raw to digi modules
process.load("Configuration.StandardSequences.RawToDigi_Data_cff")

# Set rawDataRepacker (HI and live) or hltFEDSelectorTCDS+hltFEDSelectorOnlineMetaData (for all the rest)
if (process.runType.getRunType() == process.runType.hi_run and live):
rawDataInputTag = "rawDataRepacker"
onlineMetaDataInputTag = "hltFEDSelectorOnlineMetaData"
else:
# Use raw data from selected TCDS FEDs (1024, 1025) and OnlineMetaData FED (1022)
rawDataInputTag = "hltFEDSelectorTCDS"
onlineMetaDataInputTag = "hltFEDSelectorOnlineMetaData"
# Set InputTags from selected TCDS FEDs (1024, 1025) and OnlineMetaData FED (1022)
# NOTE: these collections MUST be added to streamDQMOnlineBeamspot for all HLT menus (both pp and HI)
rawDataInputTag = "hltFEDSelectorTCDS"
onlineMetaDataInputTag = "hltFEDSelectorOnlineMetaData"

process.onlineMetaDataDigis.onlineMetaDataInputLabel = onlineMetaDataInputTag
process.scalersRawToDigi.scalersInputTag = rawDataInputTag
Expand Down