12 TEveManager::Create();
14 TEveUtil::Macro(
"show_extract.C");
16 auto h31 =
new TH3F(
"h31",
"h31", 20, -3, 3, 20, -3, 3, 20, -3, 3);
17 auto gxy =
new TF3(
"gaus2",
"xygaus");
18 gxy->SetParameters(1,0,1,0,0.3);
19 h31->FillRandom(
"gaus2");
22 auto x =
new TEvePlot3D(
"EvePlot - TH3F");
23 x->SetPlot(h31,
"glbox");
24 x->RefMainTrans().Scale(800, 800, 1000);
25 x->RefMainTrans().RotateLF(1, 3, TMath::PiOver2());
28 gEve->Redraw3D(kTRUE);