WIP: everything compiles but most of histogram class is broken

This commit is contained in:
Hans Dembinski
2018-08-06 00:31:45 +02:00
parent a84f469944
commit 109a7183ab
28 changed files with 1139 additions and 701 deletions

View File

@@ -7,7 +7,7 @@ namespace bh = boost::histogram;
namespace bp = boost::python;
// function that runs in C++ and accepts reference to dynamic histogram
void process(bh::dynamic_histogram<>& h) {
void process(bh::histogram<>& h) {
// fill histogram, in reality this would be arbitrarily complex code
for (int i = 0; i < 4; ++i) h(0.25 * i, i);
}