Skip to content
Snippets Groups Projects
Commit 2b77e11c authored by Marco Clemencic's avatar Marco Clemencic
Browse files

Fix bug in bin indexing for >1D Histograms

See merge request !1266
parents 78e88540 ec2f373e
No related branches found
No related tags found
1 merge request!1266Fix bug in bin indexing for >1D Histograms
Pipeline #3137456 passed
......@@ -182,7 +182,7 @@ namespace Gaudi::Accumulators {
// compute local index for a given dimension
int localIndex = axis[dim].index( ( *this )[dim] );
// compute global index. Bins are stored in a row first manner
index = ( dim > 0 ? ( axis[dim - 1].nBins + 2 ) : 0 ) * index + localIndex;
index = ( dim > 0 ? ( axis[dim].nBins + 2 ) : 0 ) * index + localIndex;
}
return index;
}
......
......@@ -107,3 +107,21 @@ BOOST_AUTO_TEST_CASE( test_custom_axis ) {
nlohmann::json expected_labels = {"A", "B", "C", "D"};
BOOST_TEST( j["axis"][0]["labels"] == expected_labels );
}
BOOST_AUTO_TEST_CASE( test_2d_histos, *boost::unit_test::tolerance( 1e-14 ) ) {
using namespace Gaudi::Accumulators;
Algo algo;
// test filling a 2D histogram with more bins in x than y
// Buffer will overflow if the wrong axis' nBins is used to calculate the bin index, resulting in a double free
Histogram<2, atomicity::full, float> hist{&algo, "Test2DHist", "Test 2D histogram", {{64, 0., 64.},{52, 0., 52.}}};
for ( int i=0; i<64; ++i) {
for ( int j=0; j<52; ++j) {
++hist[{i, j}];
}
}
auto j = hist.toJSON();
auto nEntries = j.at( "nEntries" ).get<unsigned long>();
BOOST_TEST( nEntries == 64*52 );
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment