histogram_utils.py 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. '''
  2. histogram_utils.py
  3. The functions in this module use a representation of a histogram that is a
  4. tuple containing an arr of N bin values, an array of N bin errors(symmetric)
  5. and an array of N+1 bin edges(N lower edges + 1 upper edge).
  6. For 2d histograms, It is similar, but the arrays are two dimensional and
  7. there are separate arrays for x-edges and y-edges.
  8. '''
  9. import numpy as np
  10. from scipy.optimize import curve_fit
  11. def hist(th1, rescale_x=1.0, rescale_y=1.0):
  12. nbins = th1.GetNbinsX()
  13. edges = np.zeros(nbins+1, np.float32)
  14. values = np.zeros(nbins, np.float32)
  15. errors = np.zeros(nbins, np.float32)
  16. for i in range(nbins):
  17. edges[i] = th1.GetXaxis().GetBinLowEdge(i+1)
  18. values[i] = th1.GetBinContent(i+1)
  19. errors[i] = th1.GetBinError(i+1)
  20. edges[nbins] = th1.GetXaxis().GetBinUpEdge(nbins)
  21. edges *= rescale_x
  22. values *= rescale_y
  23. errors *= rescale_y
  24. return values, errors, edges
  25. def hist_bin_centers(h):
  26. _, _, edges = h
  27. return (edges[:-1] + edges[1:])/2.0
  28. def hist2d(th2, rescale_x=1.0, rescale_y=1.0, rescale_z=1.0):
  29. """ Converts TH2 object to something amenable to
  30. plotting w/ matplotlab's pcolormesh.
  31. """
  32. nbins_x = th2.GetNbinsX()
  33. nbins_y = th2.GetNbinsY()
  34. xs = np.zeros((nbins_y+1, nbins_x+1), np.float32)
  35. ys = np.zeros((nbins_y+1, nbins_x+1), np.float32)
  36. values = np.zeros((nbins_y, nbins_x), np.float32)
  37. errors = np.zeros((nbins_y, nbins_x), np.float32)
  38. for i in range(nbins_x):
  39. for j in range(nbins_y):
  40. xs[j][i] = th2.GetXaxis().GetBinLowEdge(i+1)
  41. ys[j][i] = th2.GetYaxis().GetBinLowEdge(j+1)
  42. values[j][i] = th2.GetBinContent(i+1, j+1)
  43. errors[j][i] = th2.GetBinError(i+1, j+1)
  44. xs[nbins_y][i] = th2.GetXaxis().GetBinUpEdge(i+1)
  45. ys[nbins_y][i] = th2.GetYaxis().GetBinUpEdge(nbins_y+1)
  46. for j in range(nbins_y+1):
  47. xs[j][nbins_x] = th2.GetXaxis().GetBinUpEdge(nbins_x+1)
  48. ys[j][nbins_x] = th2.GetYaxis().GetBinUpEdge(j+1)
  49. xs *= rescale_x
  50. ys *= rescale_y
  51. values *= rescale_z
  52. errors *= rescale_z
  53. return values, errors, xs, ys
  54. def hist_slice(hist, range_):
  55. values, errors, edges = hist
  56. lim_low, lim_high = range_
  57. slice_ = np.logical_and(edges[:-1] > lim_low, edges[1:] < lim_high)
  58. last = len(slice_) - np.argmax(slice_[::-1])
  59. return (values[slice_],
  60. errors[slice_],
  61. np.concatenate([edges[:-1][slice_], [edges[last]]]))
  62. def hist_normalize(h, norm):
  63. values, errors, edges = h
  64. scale = norm/np.sum(values)
  65. return values*scale, errors*scale, edges
  66. # def hist_slice2d(h, range_):
  67. # values, errors, xs, ys = h
  68. # last = len(slice_) - np.argmax(slice_[::-1])
  69. # (xlim_low, xlim_high), (ylim_low, ylim_high) = range_
  70. # slice_ = np.logical_and(xs[:-1, :-1] > xlim_low, xs[1:, 1:] < xlim_high,
  71. # ys[:-1, :-1] > ylim_low, ys[1:, 1:] < ylim_high)
  72. # last = len(slice_) - np.argmax(slice_[::-1])
  73. # return (values[slice_],
  74. # errors[slice_],
  75. # np.concatenate([edges[:-1][slice_], [edges[last]]]))
  76. def hist_fit(h, f, p0=None):
  77. values, errors, edges = h
  78. xs = hist_bin_centers(h)
  79. # popt, pcov = curve_fit(f, xs, values, p0=p0, sigma=errors)
  80. popt, pcov = curve_fit(f, xs, values, p0=p0)
  81. return popt, pcov
  82. def hist_rebin(hist, range_, nbins):
  83. raise NotImplementedError()