Details
-
Bug
-
Resolution: Fixed
-
Medium
-
None
-
Running on todays master (commit 6b48032d93cd868f79872533718e3d3a7292aa4c)
Current PyROOT (not experimental)
Linux
Description
Following snipplet does result in a segfault:
import ROOT |
df = ROOT.RDataFrame(4).Define("x", "(float)rdfentry_") |
x = df.Take("float")("x").GetValue() |
print(x) |
However, works fine with the snipplet below:
import ROOT |
df = ROOT.RDataFrame(4).Define("x", "(float)rdfentry_") |
x = df.Take("float")("x") |
print(x.GetValue()) |