Skip to content

Commit

Permalink
Add support for QC big screen (#628)
Browse files Browse the repository at this point in the history
The QC Big Screen task creates a canvas with a summary of the detectors qualities.

The QC Big Screen is enabled with a new checkbox in the QC Node Wokflows panel, associated to a dedicated JIT workflow, called `glo-qc-big-screen`
  • Loading branch information
aferrero2707 authored Dec 5, 2023
1 parent 91bc587 commit 293e4f9
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions jit/glo-qc-big-screen
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
o2-qc --config consul-json://{{ consul_endpoint }}/o2/components/qc/ANY/any/glo-qc-big-screen --remote -b
12 changes: 12 additions & 0 deletions workflows/readout-dataflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -899,6 +899,15 @@ defaults:
panel: "QC_Nodes_Workflows"
index: 22
visibleif: $$qc_remote_enabled === "true"
glo_big_screen_qc_enabled: !public
value: "false"
type: bool
label: "QC Big Screen"
description: "Enable/disable QC Big Screen"
widget: checkBox
panel: "QC_Nodes_Workflows"
index: 23
visibleif: $$qc_remote_enabled === "true"
###############################
# TRG Panel
###############################
Expand Down Expand Up @@ -1759,6 +1768,9 @@ roles:
- name: glo-mean-vtx-calib
enabled: "{{ glo_mean_vtx_calib_post_proc_qc_enabled == 'true' && qc_remote_jit_enabled == 'true'}}"
include: "{{ qc_remote_jit_enabled == 'true' ? dpl.GenerateFromUri('glo-mean-vtx-post-processing-qcmn-remote') : '' }}"
- name: glo-qc-big-screen
enabled: "{{ glo_big_screen_qc_enabled == 'true' && qc_remote_jit_enabled == 'true'}}"
include: "{{ qc_remote_jit_enabled == 'true' ? dpl.GenerateFromUri('glo-qc-big-screen') : '' }}"
- name: fairmq-shmmonitor
enabled: "{{ fmq_cleanup_enabled == 'true' && qc_remote_workflow != 'none' }}"
task:
Expand Down

0 comments on commit 293e4f9

Please sign in to comment.