18 unsigned long long y = 1;
22 ROOT::RDataFrame df(10);
23 auto d = df.Define("y", [&y]() { return y *= 100; }) // A column with ulongs
26 return std::vector<int>({x++, x++, x++, x++});
27 }) // A column with four-elements collection
28 .Define("w", [&w]() { return w *= 1.8; }) // A column with doubles
31 return std::vector<std::vector<double>>({{z, ++z}, {z, ++z}, {z, ++z}});
32 }); // A column of matrices
44print(
"The following is the representation of all columns with the default nr of entries")
46print(
"\n\nThe following is the representation of two columns with the default nr of entries")
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.