/************************************************ * @file CalculateEta.test.cpp * @short test case to calculate_eta2 ***********************************************/ #include "aare/CalculateEta.hpp" #include "aare/Cluster.hpp" #include "aare/ClusterFile.hpp" // #include "catch.hpp" #include #include #include using namespace aare; using ClusterTypes = std::variant, Cluster, Cluster, Cluster, Cluster>; auto get_test_parameters() { return GENERATE( std::make_tuple(ClusterTypes{Cluster{0, 0, {1, 2, 3, 1}}}, Eta2{2. / 3, 3. / 4, static_cast(corner::cBottomLeft), 7}), std::make_tuple( ClusterTypes{Cluster{0, 0, {1, 2, 3, 4, 5, 6, 1, 2, 7}}}, Eta2{6. / 11, 2. / 7, static_cast(corner::cTopRight), 20}), std::make_tuple(ClusterTypes{Cluster{ 0, 0, {1, 6, 7, 6, 5, 4, 3, 2, 1, 2, 8, 9, 8, 1, 4, 5, 6, 7, 8, 4, 1, 1, 1, 1, 1}}}, Eta2{8. / 17, 7. / 15, 9, 30}), std::make_tuple( ClusterTypes{Cluster{0, 0, {1, 4, 7, 2, 5, 6, 4, 3}}}, Eta2{4. / 10, 4. / 11, 1, 21}), std::make_tuple( ClusterTypes{Cluster{0, 0, {1, 3, 2, 3, 4, 2}}}, Eta2{3. / 5, 2. / 5, 1, 11})); } TEST_CASE("compute_largest_2x2_subcluster", "[eta_calculation]") { auto [cluster, expected_eta] = get_test_parameters(); auto [sum, index] = std::visit( [](const auto &clustertype) { return clustertype.max_sum_2x2(); }, cluster); CHECK(expected_eta.c == index); CHECK(expected_eta.sum == sum); } TEST_CASE("calculate_eta2", "[eta_calculation]") { auto [cluster, expected_eta] = get_test_parameters(); auto eta = std::visit( [](const auto &clustertype) { return calculate_eta2(clustertype); }, cluster); CHECK(eta.x == expected_eta.x); CHECK(eta.y == expected_eta.y); CHECK(eta.c == expected_eta.c); CHECK(eta.sum == expected_eta.sum); } // 3x3 cluster layout (rotated to match the cBottomLeft enum): // 6, 7, 8 // 3, 4, 5 // 0, 1, 2 TEST_CASE("Calculate eta2 for a 3x3 int32 cluster with the largest 2x2 sum in " "the bottom left", "[eta_calculation]") { // Create a 3x3 cluster Cluster cl; cl.x = 0; cl.y = 0; cl.data[0] = 30; cl.data[1] = 23; cl.data[2] = 5; cl.data[3] = 20; cl.data[4] = 50; cl.data[5] = 3; cl.data[6] = 8; cl.data[7] = 2; cl.data[8] = 3; // 8, 2, 3 // 20, 50, 3 // 30, 23, 5 auto eta = calculate_eta2(cl); CHECK(eta.c == static_cast(corner::cBottomLeft)); CHECK(eta.x == 50.0 / (20 + 50)); // 4/(3+4) CHECK(eta.y == 50.0 / (23 + 50)); // 4/(1+4) CHECK(eta.sum == 30 + 23 + 20 + 50); } TEST_CASE("Calculate eta2 for a 3x3 int32 cluster with the largest 2x2 sum in " "the top left", "[eta_calculation]") { // Create a 3x3 cluster Cluster cl; cl.x = 0; cl.y = 0; cl.data[0] = 8; cl.data[1] = 12; cl.data[2] = 5; cl.data[3] = 77; cl.data[4] = 80; cl.data[5] = 3; cl.data[6] = 82; cl.data[7] = 91; cl.data[8] = 3; // 82, 91, 3 // 77, 80, 3 // 8, 12, 5 auto eta = calculate_eta2(cl); CHECK(eta.c == static_cast(corner::cTopLeft)); CHECK(eta.x == 80. / (77 + 80)); // 4/(3+4) CHECK(eta.y == 91.0 / (91 + 80)); // 7/(7+4) CHECK(eta.sum == 77 + 80 + 82 + 91); }