]> git.uio.no Git - u/mrichter/AliRoot.git/blame - RICH/RICHDiagnostics.C
Minor improvements on the code
[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");
51fb6cdf 14 menu->AddButton("Single Ring Gain Variation",".x RICHgainvar.C(0,events-1","Gain variation along wires");
f5f35678 15 menu->AddButton("Full Event Hits",".x RICHpadtest.C(5,0,events-1","Hits in seven modules");
16 menu->AddButton("Full Event Spectra",".x RICHpadtestC.C","Individual particles' spectra and fluxes");
17 menu->AddButton("Full Event Occupancy",".x RICHoccupancy.C","Mean and per chamber occupancy");
18 menu->Show();
19}
20
21
22