From cb42ac9de57201f674c572fa239cac3cd5b0cb72 Mon Sep 17 00:00:00 2001 From: nburmaso Date: Mon, 16 Oct 2023 13:27:26 +0300 Subject: [PATCH 1/2] Increase BC difference histogram limits --- DPG/Tasks/AOTEvent/eventSelectionQa.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DPG/Tasks/AOTEvent/eventSelectionQa.cxx b/DPG/Tasks/AOTEvent/eventSelectionQa.cxx index 41b0aa72754..4e9daa4a93f 100644 --- a/DPG/Tasks/AOTEvent/eventSelectionQa.cxx +++ b/DPG/Tasks/AOTEvent/eventSelectionQa.cxx @@ -571,7 +571,7 @@ struct EventSelectionQaTask { double minSec = floor(tsSOR / 1000.); double maxSec = ceil(tsEOR / 1000.); const AxisSpec axisSeconds{static_cast(maxSec - minSec), minSec, maxSec, "seconds"}; - const AxisSpec axisBcDif{200, -100., 100., "collision bc difference"}; + const AxisSpec axisBcDif{600, -300., 300., "bc difference"}; histos.add("hSecondsTVXvsBcDif", "", kTH2F, {axisSeconds, axisBcDif}); histos.add("hSecondsTVXvsBcDifAll", "", kTH2F, {axisSeconds, axisBcDif}); } From dd7d2536fda280cdd4649e8d6e353b61cdb66645 Mon Sep 17 00:00:00 2001 From: nburmaso Date: Mon, 16 Oct 2023 14:13:09 +0300 Subject: [PATCH 2/2] Increase n contributors limits --- DPG/Tasks/AOTEvent/eventSelectionQa.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DPG/Tasks/AOTEvent/eventSelectionQa.cxx b/DPG/Tasks/AOTEvent/eventSelectionQa.cxx index 4e9daa4a93f..7131b919f6b 100644 --- a/DPG/Tasks/AOTEvent/eventSelectionQa.cxx +++ b/DPG/Tasks/AOTEvent/eventSelectionQa.cxx @@ -86,7 +86,7 @@ struct EventSelectionQaTask { const AxisSpec axisTimeSum{100, -10., 10., ""}; const AxisSpec axisGlobalBCs{nGlobalBCs, 0., static_cast(nGlobalBCs), ""}; const AxisSpec axisBCs{nBCsPerOrbit, 0., static_cast(nBCsPerOrbit), ""}; - const AxisSpec axisNcontrib{200, 0., isLowFlux ? 200. : 4500., "n contributors"}; + const AxisSpec axisNcontrib{200, 0., isLowFlux ? 200. : 7000., "n contributors"}; const AxisSpec axisEta{100, -1., 1., "track #eta"}; const AxisSpec axisColTimeRes{1500, 0., 1500., "collision time resolution (ns)"}; const AxisSpec axisBcDif{600, -300., 300., "collision bc difference"};