From 495ecbffb1755fc9a8fc10ddc30426894cac0386 Mon Sep 17 00:00:00 2001 From: MadivB <67230306+MadivB@users.noreply.github.com> Date: Fri, 12 Dec 2025 15:56:05 -0800 Subject: [PATCH] Update flow_validation.py There shall be 64 channels for light. Here it only displays 60. Althouth channel 63 and 62 are not used, but the current graph are skipping over 61 out of the graphin area. --- run-validation/flow_validation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run-validation/flow_validation.py b/run-validation/flow_validation.py index c59c3237..83f2dff1 100755 --- a/run-validation/flow_validation.py +++ b/run-validation/flow_validation.py @@ -90,7 +90,7 @@ def main(flow_file, charge_only): plt.ylabel('Maximum Value') plt.title('Maximum Values vs. Channel IDs') plt.grid(True) - plt.xlim(0, 60) + plt.xlim(0, 64) output.savefig() plt.close()