JuliaHEP/ROOT.jl

Chars are not invariant

jpata opened this issue · 0 comments

Creating a dataframe with Chars is buggy

df = DataFrame(x=Char['a', 'b'])
writetree("test.root", df)
tdf TreeDataFrame("test.root")

since ROOT converts 'a'::Char -> ['a', '0']::Vector{Int8}.