Files
Jungfraujoch/tests/StatusVectorTest.cpp
Filip Leonarski a0a659a02c
All checks were successful
Build Packages / build:rpm (rocky8_nocuda) (push) Successful in 7m48s
Build Packages / build:rpm (rocky9_nocuda) (push) Successful in 8m22s
Build Packages / build:rpm (ubuntu2404_nocuda) (push) Successful in 6m47s
Build Packages / build:rpm (ubuntu2204_nocuda) (push) Successful in 7m15s
Build Packages / build:rpm (rocky8_sls9) (push) Successful in 7m35s
Build Packages / Generate python client (push) Successful in 29s
Build Packages / Build documentation (push) Successful in 47s
Build Packages / Create release (push) Has been skipped
Build Packages / build:rpm (rocky8) (push) Successful in 7m47s
Build Packages / build:rpm (ubuntu2204) (push) Successful in 7m47s
Build Packages / build:rpm (rocky9) (push) Successful in 8m40s
Build Packages / build:rpm (ubuntu2404) (push) Successful in 7m4s
Build Packages / Unit tests (push) Successful in 1h8m20s
v1.0.0-rc.120 (#27)
This is an UNSTABLE release.

* jfjoch_broker: Improve performance of binary plot export

Reviewed-on: #27
Co-authored-by: Filip Leonarski <filip.leonarski@psi.ch>
Co-committed-by: Filip Leonarski <filip.leonarski@psi.ch>
2025-12-09 15:21:40 +01:00

330 lines
11 KiB
C++

// SPDX-FileCopyrightText: 2024 Filip Leonarski, Paul Scherrer Institute <filip.leonarski@psi.ch>
// SPDX-License-Identifier: GPL-3.0-only
#include <catch2/catch_all.hpp>
#include "../common/StatusVector.h"
TEST_CASE("StatusVector_GetMeanPerBin","[StatusVector]") {
StatusVector status_vector;
status_vector.AddElement(5, 11);
status_vector.AddElement(2000, 45);
status_vector.AddElement(2543, 44);
status_vector.AddElement(2600, 41);
MultiLinePlotStruct plot;
SECTION("Binning 1000") {
plot = status_vector.GetMeanPerBin(1000, 0.0, 1.0);
REQUIRE(plot.x.size() == 2);
REQUIRE(plot.y.size() == 2);
CHECK(plot.x[0] == Catch::Approx(500));
CHECK(plot.x[1] == Catch::Approx(2500));
CHECK(plot.y[0] == Catch::Approx(11));
CHECK(plot.y[1] == Catch::Approx((45 + 44 + 41) / 3.0));
}
SECTION("Binning 500") {
plot = status_vector.GetMeanPerBin(500, 0.0, 1.0);
REQUIRE(plot.x.size() == 3);
REQUIRE(plot.y.size() == 3);
CHECK(plot.x[0] == Catch::Approx(250));
CHECK(plot.x[1] == Catch::Approx(2250));
CHECK(plot.x[2] == Catch::Approx(2750));
CHECK(plot.y[0] == Catch::Approx(11));
CHECK(plot.y[1] == Catch::Approx(45));
CHECK(plot.y[2] == Catch::Approx((44 + 41) / 2.0));
}
SECTION("Binning 1") {
plot = status_vector.GetMeanPerBin(1, 0.0, 1.0);
REQUIRE(plot.x.size() == 4);
REQUIRE(plot.y.size() == 4);
CHECK(plot.x[0] == Catch::Approx(5));
CHECK(plot.x[1] == Catch::Approx(2000));
CHECK(plot.x[2] == Catch::Approx(2543));
CHECK(plot.x[3] == Catch::Approx(2600));
CHECK(plot.y[0] == Catch::Approx(11));
CHECK(plot.y[1] == Catch::Approx(45));
CHECK(plot.y[2] == Catch::Approx(44));
CHECK(plot.y[3] == Catch::Approx(41));
}
}
TEST_CASE("StatusVector_GetMeanPerBin_Start_Incr","[StatusVector]") {
StatusVector status_vector;
status_vector.AddElement(5, 11);
status_vector.AddElement(2000, 45);
status_vector.AddElement(2543, 44);
status_vector.AddElement(2600, 41);
MultiLinePlotStruct plot;
float start = 545.0f;
float incr = 2.5f;
SECTION("Binning") {
plot = status_vector.GetMeanPerBin(1000, start, incr);
REQUIRE(plot.x.size() == 2);
REQUIRE(plot.y.size() == 2);
CHECK(plot.x[0] == Catch::Approx(start + 500 * incr));
CHECK(plot.x[1] == Catch::Approx(start + 2500 * incr));
CHECK(plot.y[0] == Catch::Approx(11));
CHECK(plot.y[1] == Catch::Approx((45 + 44 + 41) / 3.0));
}
SECTION("No binning") {
plot = status_vector.GetMeanPerBin(1, start, incr);
REQUIRE(plot.x.size() == 4);
REQUIRE(plot.y.size() == 4);
CHECK(plot.x[0] == Catch::Approx(start + 5 * incr));
CHECK(plot.x[1] == Catch::Approx(start + 2000 * incr));
CHECK(plot.x[2] == Catch::Approx(start + 2543 * incr));
CHECK(plot.x[3] == Catch::Approx(start + 2600 * incr));
CHECK(plot.y[0] == Catch::Approx(11));
CHECK(plot.y[1] == Catch::Approx(45));
CHECK(plot.y[2] == Catch::Approx(44));
CHECK(plot.y[3] == Catch::Approx(41));
}
}
TEST_CASE("StatusVector_GetMaxPerBin_Start_Incr","[StatusVector]") {
StatusVector status_vector;
status_vector.AddElement(5, 11);
status_vector.AddElement(2000, 45);
status_vector.AddElement(2543, 44);
status_vector.AddElement(2600, 41);
MultiLinePlotStruct plot;
float start = 545.0f;
float incr = 2.5f;
plot = status_vector.GetMaxPerBin(1, start, incr);
REQUIRE(plot.x.size() == 4);
REQUIRE(plot.y.size() == 4);
CHECK(plot.x[0] == Catch::Approx(start + 5 * incr));
CHECK(plot.x[1] == Catch::Approx(start + 2000 * incr));
CHECK(plot.x[2] == Catch::Approx(start + 2543 * incr));
CHECK(plot.x[3] == Catch::Approx(start + 2600 * incr));
CHECK(plot.y[0] == Catch::Approx(11));
CHECK(plot.y[1] == Catch::Approx(45));
CHECK(plot.y[2] == Catch::Approx(44));
CHECK(plot.y[3] == Catch::Approx(41));
}
TEST_CASE("StatusVector_GetMeanPerBin_Fill","[StatusVector]") {
StatusVector status_vector;
status_vector.AddElement(5, 11);
status_vector.AddElement(2000, 45);
status_vector.AddElement(2543, 44);
status_vector.AddElement(2600, 41);
MultiLinePlotStruct plot;
float start = 545.0f;
float incr = 2.5f;
float fill = -345.0f;
SECTION("Binning") {
plot = status_vector.GetMeanPerBin(1000, start, incr, fill);
REQUIRE(plot.x.size() == 3);
REQUIRE(plot.y.size() == 3);
CHECK(plot.x[0] == Catch::Approx(start + 500 * incr));
CHECK(plot.x[1] == Catch::Approx(start + 1500 * incr));
CHECK(plot.x[2] == Catch::Approx(start + 2500 * incr));
CHECK(plot.y[0] == Catch::Approx(11.0));
CHECK(plot.y[1] == Catch::Approx(fill));
CHECK(plot.y[2] == Catch::Approx((45 + 44 + 41) / 3.0f));
}
SECTION("No Binning") {
plot = status_vector.GetMeanPerBin(1, start, incr, fill);
REQUIRE(plot.x.size() == 2601);
REQUIRE(plot.y.size() == 2601);
CHECK(plot.x[0] == Catch::Approx(start + 0 * incr));
CHECK(plot.x[1] == Catch::Approx(start + 1 * incr));
CHECK(plot.x[2] == Catch::Approx(start + 2 * incr));
CHECK(plot.x[2600] == Catch::Approx(start + 2600 * incr));
CHECK(plot.y[0] == Catch::Approx(fill));
CHECK(plot.y[1] == Catch::Approx(fill));
CHECK(plot.y[2] == Catch::Approx(fill));
CHECK(plot.y[5] == Catch::Approx(11));
CHECK(plot.y[2000] == Catch::Approx(45));
CHECK(plot.y[2543] == Catch::Approx(44));
CHECK(plot.y[2599] == Catch::Approx(fill));
CHECK(plot.y[2600] == Catch::Approx(41));
}
}
TEST_CASE("StatusVector_Mean","[StatusVector]") {
StatusVector status_vector;
status_vector.AddElement(5, 0.045f);
status_vector.AddElement(2000, .010f);
status_vector.AddElement(2543, 0.076f);
status_vector.AddElement(2600, 0.011f);
REQUIRE(status_vector.Mean() == Catch::Approx((0.045+0.010+0.076+0.011)/4.0));
}
TEST_CASE("StatusVector_Mean_LargeNum","[StatusVector]") {
StatusVector status_vector;
for (int i = 0; i < 100000; i++)
status_vector.AddElement(i, 0.045f);
REQUIRE(status_vector.Mean() == Catch::Approx(0.045));
}
TEST_CASE("StatusVector_GetMaxPerBin","[StatusVector]") {
StatusVector status_vector;
status_vector.AddElement(5, 11);
status_vector.AddElement(2000, 45);
status_vector.AddElement(2543, 44);
status_vector.AddElement(2600, 41);
auto status_out = status_vector.GetMaxPerBin(1000, 0.0, 1.0);
REQUIRE(status_out.x.size() == 2);
REQUIRE(status_out.y.size() == 2);
REQUIRE(status_out.x[0] == 500);
REQUIRE(status_out.x[1] == 2500);
REQUIRE(status_out.y[0] == 11);
REQUIRE(status_out.y[1] == 45);
status_out = status_vector.GetMaxPerBin(500, 0.0, 1.0);
REQUIRE(status_out.x.size() == 3);
REQUIRE(status_out.y.size() == 3);
REQUIRE(status_out.y[0] == 11);
REQUIRE(status_out.y[1] == 45);
REQUIRE(status_out.y[2] == 44);
status_out = status_vector.GetMaxPerBin(1, 0.0, 1.0);
REQUIRE(status_out.x.size() == 4);
REQUIRE(status_out.y.size() == 4);
REQUIRE(status_out.x[0] == 5);
REQUIRE(status_out.y[0] == 11);
REQUIRE(status_out.x[1] == 2000);
REQUIRE(status_out.y[1] == 45);
REQUIRE(status_out.x[2] == 2543);
REQUIRE(status_out.y[2] == 44);
REQUIRE(status_out.x[3] == 2600);
REQUIRE(status_out.y[3] == 41);
}
TEST_CASE("StatusVector_ExportArray","[StatusVector]") {
StatusVector status_vector;
status_vector.AddElement(5, 11);
status_vector.AddElement(7, 45);
status_vector.AddElement(8, 44);
status_vector.AddElement(10, 41);
auto status_out = status_vector.ExportArray();
REQUIRE(status_out.size() == 11);
CHECK(std::isnan(status_out[0]));
CHECK(status_out[5] == 11);
CHECK(status_out[7] == 45);
CHECK(status_out[8] == 44);
CHECK(std::isnan(status_out[9]));
CHECK(status_out[10] == 41);
}
TEST_CASE("StatusVector_Plot_OneBin","[StatusVector]") {
StatusVector status_vector;
status_vector.AddElement(5, 11);
status_vector.AddElement(7, 12);
auto plot_out = status_vector.GetMeanPlot(1000, 0.0, 1.0);
REQUIRE(plot_out.GetPlots().size() == 1);
REQUIRE(plot_out.GetPlots()[0].x.size() == 2);
REQUIRE(plot_out.GetPlots()[0].y.size() == 2);
REQUIRE(plot_out.GetPlots()[0].x[0] == Catch::Approx(5));
REQUIRE(plot_out.GetPlots()[0].y[0] == Catch::Approx(11));
REQUIRE(plot_out.GetPlots()[0].x[1] == Catch::Approx(7));
REQUIRE(plot_out.GetPlots()[0].y[1] == Catch::Approx(12));
}
TEST_CASE("StatusVector_Plot_NoBinning","[StatusVector]") {
StatusVector status_vector;
status_vector.AddElement(5, 11);
auto plot_out = status_vector.GetMaxPlot(1, 0.0, 1.0);
REQUIRE(plot_out.GetPlots().size() == 1);
REQUIRE(plot_out.GetPlots()[0].x.size() == 1);
REQUIRE(plot_out.GetPlots()[0].y.size() == 1);
REQUIRE(plot_out.GetPlots()[0].x[0] == Catch::Approx(5));
REQUIRE(plot_out.GetPlots()[0].y[0] == Catch::Approx(11));
}
TEST_CASE("StatusMultiVector","[StatusMultiVector]") {
StatusMultiVector status_vector;
status_vector.AddElement("plot1", 0, 4);
status_vector.AddElement("plot1", 1, 3);
status_vector.AddElement("plot2", 0, 5);
status_vector.AddElement("plot2", 1, 4);
auto ret = status_vector.GetMeanPlot(1, 3.0, 5.0);
REQUIRE(ret.GetPlots().size() == 2);
REQUIRE(ret.GetPlots()[0].title == "plot1");
REQUIRE(ret.GetPlots()[0].x.size() == 2);
REQUIRE(ret.GetPlots()[0].y.size() == 2);
REQUIRE(ret.GetPlots()[0].x[0] == 3.0 + 5.0 * 0.0f);
REQUIRE(ret.GetPlots()[0].y[1] == 3.0f);
REQUIRE(ret.GetPlots()[1].title == "plot2");
REQUIRE(ret.GetPlots()[1].x.size() == 2);
REQUIRE(ret.GetPlots()[1].y.size() == 2);
REQUIRE(ret.GetPlots()[1].x[1] == 3.0 + 5.0 * 1.0f);
REQUIRE(ret.GetPlots()[1].y[1] == 4.0f);
}
TEST_CASE("StatusVector_Clear","[StatusVector]") {
StatusVector status_vector;
status_vector.AddElement(5, 800);
status_vector.AddElement(8, 1000);
REQUIRE(status_vector.Mean() == 900);
status_vector.Clear();
REQUIRE(!std::isfinite(status_vector.Mean()));
status_vector.AddElement(50, 200);
status_vector.AddElement(80, 100);
REQUIRE(status_vector.Mean() == 150);
auto plot = status_vector.GetMeanPlot(1, 0.0, 1.0);
REQUIRE(plot.GetPlots().size() == 1);
REQUIRE(plot.GetPlots()[0].x.size() == 2);
REQUIRE(plot.GetPlots()[0].x[0] == 50);
REQUIRE(plot.GetPlots()[0].x[1] == 80);
}
TEST_CASE("StatusVector_GetElement","[StatusVector]") {
StatusVector status_vector;
status_vector.AddElement(5, 800);
status_vector.AddElement(8, 1000);
REQUIRE(!status_vector.GetElement(0));
REQUIRE(!status_vector.GetElement(3));
REQUIRE(status_vector.GetElement(5) == 800);
REQUIRE(!status_vector.GetElement(7));
REQUIRE(status_vector.GetElement(8) == 1000);
REQUIRE(!status_vector.GetElement(9));
REQUIRE(!status_vector.GetElement(100));
}