---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
<ipython-input-14-ceb14ae01531> in <module>()
5 normalize_to=1,
6 shape=(1,2),
----> 7 enable_fill=True)
8 HC._canvas.Draw()
/home/caleb/Sources/TTTT/python/utils.py in stack_hist_array(cls, hist_names, titles, shape, **kwargs)
197 for i, hist_name, title in zip(bin_range(n_hists), hist_names, titles):
198 cls._canvas.cd(i)
--> 199 hists, labels = cls.get_hist_set(hist_name)
200 cls.stack_hist(hist_name, title=title, draw=True, **kwargs)
201 cls._canvas.cd(1).BuildLegend(0.75, 0.75, 0.95, 0.95, "")
/home/caleb/Sources/TTTT/python/utils.py in get_hist_set(cls, attrname)
122 def get_hist_set(cls, attrname):
123 labels, hists = zip(*[(sample_name, getattr(h, attrname))
--> 124 for sample_name, h in cls.collections.items()])
125 return labels, hists
126
/home/caleb/Sources/TTTT/python/utils.py in <listcomp>(.0)
122 def get_hist_set(cls, attrname):
123 labels, hists = zip(*[(sample_name, getattr(h, attrname))
--> 124 for sample_name, h in cls.collections.items()])
125 return labels, hists
126
AttributeError: 'HistCollection' object has no attribute 'lepton_count_pass_miniiso'