Also, try with a more recent version of ROOT. With the latest (6.32.04), for instance, we get some information:
>>> import ROOT
>>> h = ROOT.TH1F('h', 'h', 100, -3, 3)
>>> h.FillRandom('gaus', 10000)
>>> hc = h.GetCumulative(suffix='_mysuffix')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "cppyy_default_compiler", line 1, in <module>
NameError: name 'kTRUE' is not defined
>>>
If you provide the “forward” parameter as ROOT.kTRUE (or Python’s True) instead of the default kTRUE, it works:
>>> hc = h.GetCumulative(suffix='_mysuffix', forward=ROOT.kTRUE)
>>>