interface break for axis, new category axis

This commit is contained in:
Hans Dembinski
2017-11-02 21:43:04 +01:00
parent e0304abc71
commit 757d4b0ca4
17 changed files with 610 additions and 518 deletions

View File

@@ -6,7 +6,7 @@ h = bh.histogram(bh.axis.regular(5, -5, 5, "x"),
cpp_filler.process(h) # histogram is filled with input values in c++
for iy in range(h.axis(1).bins):
for ix in range(h.axis(0).bins):
for iy in range(len(h.axis(1))):
for ix in range(len(h.axis(0))):
print "%3i" % h.value(ix, iy),
print