{ // // Menu für VL "Rechnernutzung" // TControlBar bar("vertical"); bar.SetNameTitle("Menu VL RN", "VL Rechneranwendungen"); bar.AddButton("Display data",".x TGraph_from_file.C","Example for reading data from file"); bar.AddButton("Fit to data",".x TGraphFit.C","Example of simple fit to data"); bar.AddButton("Demonstrate file I/O",".x fileIO.C","Read data from ASCII file "); bar.AddButton("Plot chi2 PDF",".x chi2PDF.C","Plot PDF of Chi2"); bar.AddButton("Plot functions",".x funktionen.C","Plot functions"); bar.AddButton("Plot 2d-Gauss",".x gaus2d.C","Plot two-dimensional Gaussian with correlation"); bar.AddButton("Random Numbers",".x myrand.C","Check random number generator"); bar.AddButton("Pi with random numbers",".x calc_pi.C","Integrate area of a circle with random numbers"); bar.AddButton("generate random Gauss",".x rangauss.C","Generate and plot random Gaussian numbers"); bar.AddButton("generate 2d-andom Gauss",".x rangauss2d.C","Pairs of random Gaussian numbers with correlations"); bar.AddButton("EXIT",".q","... the end !!!"); bar.Show(); gROOT->SaveContext(); }