# script to try out histogramming import LT.box as B # get the file mcf = B.get_file('counts.data') # get the data ne = B.get_data(mcf, 'n') counts = B.get_data(mcf, 'counts') # make a hisrogram of the values hh = B.histo(counts, range = (120., 180.), bins = 60) # plot the histogram hh.plot() B.pl.show()