]> git.uio.no Git - u/mrichter/AliRoot.git/blame - RICH/RICHDiagnostics.C
Inverted pad size definition (for the last time).
[u/mrichter/AliRoot.git] / RICH / RICHDiagnostics.C
CommitLineData
f5f35678 1
2Int_t events;
3
4RICHDiagnostics(Int_t nev=1)
5{
6
7 events=nev;
8
9 TControlBar *menu = new TControlBar("vertical","RICH diagnostics");
10 menu->AddButton("Single Ring Hits",".x RICHpadtest.C(1,0,events-1","Hits in central region");
11 menu->AddButton("Single Ring Spectra",".x RICHpadtest.C(2,0,events-1","Photon spectra");
12 menu->AddButton("Single Ring Statistics",".x RICHpadtest.C(3,0,events-1","Production and clusters");
13 menu->AddButton("Single Ring Reconstruction",".x RICHpadtest.C(4,0,events-1","Generated and reconstructed values");
14 menu->AddButton("Full Event Hits",".x RICHpadtest.C(5,0,events-1","Hits in seven modules");
15 menu->AddButton("Full Event Spectra",".x RICHpadtestC.C","Individual particles' spectra and fluxes");
16 menu->AddButton("Full Event Occupancy",".x RICHoccupancy.C","Mean and per chamber occupancy");
17 menu->Show();
18}
19
20
21