{ auto c26 = new TCanvas("c26","c26",600,400); gStyle->SetOptStat(kFALSE); auto h3iso = new TH3F("h3iso","Option ISO",15,-2,2,15,-2,2,15,0,4); double x, y, z; for (Int_t i=0;i<10000;i++) { gRandom->Rannor(x, y); z = x*x + y*y; h3iso->Fill(x,y,z); } h3iso->SetFillColor(kCyan); h3iso->Draw("ISO"); }