00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 {
00011
00012
00013
00014
00015
00016 gROOT->Reset();
00017 bar = new TControlBar("vertical", "STAR Demos",600,400);
00018
00019 bar->AddButton("Create STAF \"particle\" table",".x CallMevSaveXDF.cxx", "Click it to create a new XDF file and fill it with \"mevsim\" STAF ,module");
00020 bar->AddButton("Plot histogram",".x MakeHists.cxx", "Read XDF file with \"particle\" table and plot some histograms");
00021 bar->AddButton("Make analysis", ".x par_anal.cxx", "Another example of the analysis of the \"particle\" table");
00022 bar->AddButton("Big Full Chain",".x bfc.C", "An example of production chain (1 event only)");
00023 bar->AddButton("Multiple dst analysis",".x ana.C", "An example of multiple dst files analysis");
00024 bar->Show();
00025 gROOT->SaveContext();
00026 printf("Look for the new ROOT control bar window and pop it up !!!\n");
00027 }
00028
00029