Revision 5b5d22fc27783bd645341f12e906516285c450b4 authored by Rene Brun on 08 March 2004, 17:09:37 UTC, committed by Rene Brun on 08 March 2004, 17:09:37 UTC
instead of this macro, kept for back compatibility


git-svn-id: http://root.cern.ch/svn/root/trunk@8342 27541ba8-7e3a-0410-8455-c3a389f83636
1 parent 40d48b0
Raw File
benchmarks.C
{
   gROOT->Reset();
   bench = new TCanvas("bench","Benchmarks Summary",-1000,50,200,500);
   summary = new TPaveText(0,0,1,1);
   summary->SetTextAlign(12);
   summary->SetTextSize(0.1);
   summary->Draw();
   summary->AddText(" ** framework.C");
   summary->AddText(" ** hsimple.C");
   summary->AddText(" ** hsum.C");
   summary->AddText(" ** formula1.C");
   summary->AddText(" ** fillrandom.C");
   summary->AddText(" ** fit1.C");
   summary->AddText(" ** h1draw.C");
   summary->AddText(" ** graph.C");
   summary->AddText(" ** gerrors.C");
   summary->AddText(" ** tornado.C");
   summary->AddText(" ** surfaces.C");
   summary->AddText(" ** runzdemo.C");
   summary->AddText(" ** geometry.C");
   summary->AddText(" ** na49view.C");
   summary->AddText(" ** file.C");
   summary->AddText(" ** ntuple1.C");
   summary->AddText(" ** rootmarks.C");
   bexec("framework.C");
   bexec("hsimple.C");
   bexec("hsum.C");
   bexec("formula1.C");
   bexec("fillrandom.C");
   bexec("fit1.C");
   bexec("h1draw.C");
   bexec("graph.C");
   bexec("gerrors.C");
   bexec("tornado.C");
   bexec("surfaces.C");
   bexec("runzdemo.C");
   bexec("geometry.C");
   bexec("na49view.C");
   bexec("na49view.C");
   bexec("file.C");
   bexec("ntuple1.C");
   bexec("rootmarks.C");
}
back to top