Histograms in three dimensions are tricky. You cannot use them for graphical representation, therefore, jHepWork does not add more features which are already present in the Jaida Histogram3D class.
In jHepWork, 3D histograms are called H3D. In case of fixed binning, these histogram can be defined by building three axes and passing them to the histogram constructor:
>>> from jhplot import * >>> from hep.aida.ref.histogram import * >>> ax=FixedAxis(binsX,minX,maxX) >>> ay=FixedAxis(binsY,minY,maxY) >>> az=FixedAxis(binsZ,minZ,maxZ) >>> h3=H3D('title', ax, ay, az)
Use the method fill(x,y,z) to fill such histograms. The jHepWork help assist will help to find all methods for this class.