Trying to launch the next code
ROOT::EnableImplicitMT(); // Tell ROOT you want to go parallel
ROOT::Experimental::TDataFrame d(“myTree”, file); // Interface to TTree and TChain
auto myHisto = d.Histo1D(“Branch_A”); // This happens in parallel!
myHisto->Draw();
When launching there are shown error that “No member named ‘TDataFrame’ in namespace ‘ROOT::Experimental’”. What’s the problem ?