fixing travis

This commit is contained in:
Hans Dembinski
2017-06-06 15:22:50 +02:00
parent 43927894be
commit 367131c336
6 changed files with 19 additions and 21 deletions

View File

@@ -0,0 +1,12 @@
import histogram as bh
import cpp_filler
h = bh.histogram(bh.axis.regular(5, -5, 5, "x"),
bh.axis.regular(5, -5, 5, "y"))
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):
print "%3i" % h.value(ix, iy),
print