source: JEM-EUSO/esaf_lal/tags/v1_r0/esaf/macros/App/AppHelp.C @ 117

Last change on this file since 117 was 117, checked in by moretto, 11 years ago

ESAF version compilable on mac OS

File size: 1.3 KB
Line 
1{
2//
3gROOT->Reset();
4new TCanvas("help","Help to run macros",200,10,700,500);
5
6welcome = new TPaveText(.1,.8,.9,.97);
7welcome->AddText("Welcome to the ESAF Analysis Macros");
8welcome->SetTextFont(32);
9welcome->SetTextColor(4);
10welcome->SetFillColor(3);
11welcome->SetFillStyle(3010);
12welcome->Draw();
13
14hdemo = new TPaveText(.05,.05,.95,.7);
15hdemo->SetTextAlign(12);
16hdemo->SetTextFont(52);
17hdemo->AddText("- Run \"Init\" first. Then all available macros in any order");
18hdemo->AddText("- Clicking \"OneEventAnalysis\" will produce various plots for one event");
19hdemo->AddText("storing them as gif and eps files into gif/ and eps/ directories. ");
20hdemo->AddText("- Clicking \"MultiEventsAnalysis\" will do some plots for all events read");
21hdemo->AddText("from ListOfFiles file stored in esaf/macros/ directory. ");
22hdemo->AddText("- If you modified GlobalHisto.C/h you should unload GlobalHisto.so");
23hdemo->AddText("typing \"root[].U path/GlobalHisto.so\" where path is the absolute path");
24hdemo->AddText("to your GlobalHisto.so file. (You can find it via \"root[].file\" command)");
25hdemo->AddText("- Then Click \"Init\" again and produce your plots");
26hdemo->SetAllWith("....","color",2);
27hdemo->SetAllWith("....","font",72);
28hdemo->SetAllWith("....","size",0.04);
29hdemo->SetFillColor(10);
30hdemo->Draw();
31}
Note: See TracBrowser for help on using the repository browser.