-
Type:
Bug
-
Status: Closed (View Workflow)
-
Priority:
Blocker
-
Resolution: Fixed
-
Affects Version/s: 6.18/02
-
Component/s: PyROOT
-
Labels:None
-
Environment:
ROOT 6.18/02, SLF7, GCC 8.2.0, Python 2.7.15.
Philippe implemented initial triage on the failure as demonstrated in art suite tests, and produced the attached header as a minimal reproducer.
To reproduce the bug, enter the following at the Python prompt:
>>>import ROOT
|
>>>ROOT.gROOT.ProcessLine(".L artev.h+")
|
>>> ROOT.test()
|
>>> ev = ROOT.Event()
|
>>> tag = ROOT.Tag()
|
>>> result = ROOT.Handle(ROOT.TriggerResults)()
|
>>> ev.getByLabel(tag, result)
|
Traceback (most recent call last):
|
File "<stdin>", line 1, in <module>
|
TypeError: can not resolve method template call for 'getByLabel'
|
>>>
|