18void df030_SQliteVersionsOfROOT() {
22 TH1F hVersionOfRoot(
"hVersionOfRoot",
"Development Versions of ROOT", 8, 0, -1);
24 auto fillVersionHisto = [&hVersionOfRoot] (
const std::string &version) {
26 TString shortVersion(copyVersion(0,4));
27 hVersionOfRoot.Fill(shortVersion, 1);
30 rdf.Foreach( fillVersionHisto, {
"Version" } );
32 auto VersionOfRootHistogram =
new TCanvas();
35 hVersionOfRoot.GetXaxis()->LabelsOption(
"a");
36 hVersionOfRoot.LabelsDeflate(
"X");
37 hVersionOfRoot.DrawClone(
"");
R__EXTERN TStyle * gStyle
1-D histogram with a float per channel (see TH1 documentation)}
void SetOptStat(Int_t stat=1)
The type of information printed in the histogram statistics box can be selected via the parameter mod...
RDataFrame MakeSqliteDataFrame(std::string_view fileName, std::string_view query)
Factory method to create a SQlite RDataFrame.