Details
-
Bug
-
Status: Closed (View Workflow)
-
Blocker
-
Resolution: Fixed
-
master, 6.14/00
-
None
-
None
-
any
Description
Minimal reproducer (does not matter if the column is Define'd or from a file):
#include <ROOT/RDataFrame.hxx>
|
|
int main() |
{
|
ROOT::RDataFrame df(3);
|
df.Define("x", "42").Alias("y", "x").Snapshot("t", "f.root", "y"); |
return 0; |
}
|