Int_t smpl(){ ROOT::EnableImplicitMT(); //ROOT::DisableImplicitMT(); ofstream ofs; ofs.open("smpl.csv"); ofs.setf(ios::fixed); ofs << "xval,yval" << endl; Double_t max =1E+5; for(Int_t i =0;i ("xval"); auto yval =csv_rdf.Take("yval"); auto gr =new TGraph(xval->size(),&xval->at(0),&yval->at(0)); gr->Draw("al"); gPad->SetLogx(); gPad->SetLogy(); return 0; }