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

Online DQM: add an input argument outputBaseDir in pbsource_cfi.py (to fit with the new hltd version) #42128

Merged
merged 1 commit into from
Jul 7, 2023
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
5 changes: 4 additions & 1 deletion DQM/Integration/python/config/inputsource_cfi.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,11 @@
VarParsing.VarParsing.varType.string,
"Unique run key from RCMS for Frontier")

# Parameter for output directory of the event display clients
# Parameter for output directory of the event display clients
# visualization-live and visualization-live-secondInstance
# this additional input argument was added in the hltd framework
# only for the visualization clients
# Note, the other clients do not use this input parameter

options.register('outputBaseDir',
'/fff/BU0/output',
Expand Down
13 changes: 13 additions & 0 deletions DQM/Integration/python/config/pbsource_cfi.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,19 @@
VarParsing.VarParsing.varType.string,
"Unique run key from RCMS for Frontier")

# Parameter for output directory of the event display clients
# visualization-live and visualization-live-secondInstance
# this additional input argument was added in the hltd framework
# only for the visualization clients
# Note, the other clients do not use this input parameter

options.register('outputBaseDir',
'/fff/BU0/output',
VarParsing.VarParsing.multiplicity.singleton,
VarParsing.VarParsing.varType.string,
"Directory where the visualization output files will appear.")


options.parseArguments()

# Fix to allow scram to compile
Expand Down