]> git.uio.no Git - u/mrichter/AliRoot.git/blame - FMD/AliFMDSpectraDisplay.cxx
Use frag model
[u/mrichter/AliRoot.git] / FMD / AliFMDSpectraDisplay.cxx
CommitLineData
7af3df7f 1//
2//____________________________________________________________________
3//
4// $Id: DrawHits.C 22496 2007-11-26 13:50:44Z cholm $
5//
6// Script that contains a class to draw hits, using the
7// AliFMDInputHits class in the util library.
8//
9// Use the script `Compile.C' to compile this class using ACLic.
10//
11#include <AliCDBManager.h>
12#include <AliFMDParameters.h>
13#include <AliFMDHit.h>
14#include <AliFMDDigit.h>
15#include <AliFMDSDigit.h>
16#include <AliFMDRecPoint.h>
17#include <AliESDFMD.h>
18#include <AliFMDPattern.h>
19#include <AliFMDSpectraDisplay.h>
20#include <TBrowser.h>
21#include <TDirectory.h>
22#include <TObjArray.h>
23#include <TH1.h>
24#include <TH2.h>
25#include <TH3.h>
26#include <TGraph.h>
27#include <TF1.h>
28#include <iostream>
29#include <TStyle.h>
30#include <TEnv.h>
31#include <TCanvas.h>
32#include <TGFrame.h>
33#include <TGCanvas.h>
34#include <TGListTree.h>
35#include <TGClient.h>
36#include <TSystem.h>
37#include <KeySymbols.h>
38#include <TClass.h>
39#include <RQ_OBJECT.h>
40#include <TSlider.h>
c6b36280 41#define NESTED(X) AliFMDSpectraDisplay::AliFMDSpectraDisplay # X
7af3df7f 42
43//==================================================================
c6b36280 44void AliFMDSpectraDisplay::AliFMDSpectraDisplayElement::MakeHistograms(TAxis* axis)
7af3df7f 45{
c6b36280 46 // Create the
47 // needed histograms
48 // for this element
7af3df7f 49 if (fFull) return;
50 if (axis->IsVariableBinSize()) {
51 fFull = new TH1F(Form("f_%s", GetName()), Form("%s spectra", GetName()),
52 axis->GetXbins()->fN, axis->GetXbins()->fArray);
53 fCut = new TH1F(Form("c_%s", GetName()),
54 Form("%s restricted spectra", GetName()),
55 axis->GetXbins()->fN, axis->GetXbins()->fArray);
56 }
57 else {
58 fFull = new TH1F(Form("f_%s", GetName()), Form("%s spectra", GetName()),
59 axis->GetNbins(), axis->GetXmin(), axis->GetXmax());
60 fCut = new TH1F(Form("c_%s", GetName()),
61 Form("%s restricted spectra", GetName()),
62 axis->GetNbins(), axis->GetXmin(), axis->GetXmax());
63 }
64 fFull->SetFillColor(kRed);
65 fFull->SetFillStyle(3001);
66 fCut->SetFillColor(kBlue);
67 fCut->SetFillStyle(3001);
68}
69//__________________________________________________________________
c6b36280 70void AliFMDSpectraDisplay::AliFMDSpectraDisplayElement::DoFill(Double_t v)
7af3df7f 71{
c6b36280 72 // Fill into histograms
7af3df7f 73 if (fFull) fFull->Fill(v);
74}
75//__________________________________________________________________
c6b36280 76void AliFMDSpectraDisplay::AliFMDSpectraDisplayElement::Show(Option_t* option,
7af3df7f 77 Double_t l, Double_t h)
78{
c6b36280 79 // Show this element
80 //
7af3df7f 81 if (!fFull) return;
82 gPad->SetLogy(fFull->GetMaximum() > 10);
83 fFull->Draw(option);
84 Double_t lx = fFull->GetXaxis()->GetXmin();
85 Double_t hx = fFull->GetXaxis()->GetXmax();
86 Double_t rr = (hx-lx);
87 Double_t ll = rr * l + lx;
88 Double_t hh = rr * h + lx;
89 for (Int_t i = 1; i <= fFull->GetNbinsX(); i++) {
90 if (fFull->GetBinCenter(i) <= ll ||
91 fFull->GetBinCenter(i) > hh) {
92 fCut->SetBinContent(i, 0);
93 continue;
94 }
95 fCut->SetBinContent(i, fFull->GetBinContent(i));
96 }
97 fCut->Draw(Form("%s same", option));
98}
99
100//__________________________________________________________________
101Int_t
c6b36280 102AliFMDSpectraDisplay::AliFMDSpectraDisplayElement::Compare(const TObject*) const
7af3df7f 103{
104 return -1;
105}
106
107
108//==================================================================
c6b36280 109AliFMDSpectraDisplay::AliFMDSpectraDisplayTop::AliFMDSpectraDisplayTop(TGCompositeFrame& frame,
7af3df7f 110 TCanvas* canvas)
111 : AliFMDSpectraDisplayElement("All", "Everything"),
112 fHints(kLHintsExpandX|kLHintsExpandY,3, 3, 3, 3),
113 fContainer(&frame, 200, 350),
114 fList(&fContainer, kHorizontalFrame),
115 fChildren(0),
116 fCurrentEntry(0),
117 fCanvas(canvas),
c6b36280 118 fkHist1DIcon(gClient->GetPicture("h1_t.xpm")),
119 fkHist2DIcon(gClient->GetPicture("h2_t.xpm")),
120 fkHist3DIcon(gClient->GetPicture("h3_t.xpm")),
121 fkGraphIcon(gClient->GetPicture("graph.xpm")),
7af3df7f 122 fAxis(0),
123 fEntry(*(fList.AddItem(0, GetName(), this)))
124{
c6b36280 125 // Constructor
126 // Parameters:
127 // frame PArent frame
128 // canvas Canvas to draw in
7af3df7f 129 fContainer.AddFrame(&fList, &fHints);
130 frame.AddFrame(&fContainer, &fHints);
131
132 fList.Connect("Clicked(TGListTreeItem*,Int_t)",
c6b36280 133 "AliFMDSpectraDisplay::AliFMDSpectraDisplayTop", this,
7af3df7f 134 "HandleEntry(TGListTreeItem*,Int_t)");
135 fList.Connect("KeyPressed(TGListTreeItem*,ULong_t,ULong_t)",
c6b36280 136 "AliFMDSpectraDisplay::AliFMDSpectraDisplayTop", this,
7af3df7f 137 "HandleKey(TGListTreeItem*,UInt_t,UInt_t)");
138 fList.Connect("ReturnPressed(TGListTreeItem*)",
c6b36280 139 "AliFMDSpectraDisplay::AliFMDSpectraDisplayTop", this,
7af3df7f 140 "HandleReturn(TGListTreeItem*)");
141}
142//____________________________________________________________________
143void
c6b36280 144AliFMDSpectraDisplay::AliFMDSpectraDisplayTop::SetAxis(TAxis* axis)
7af3df7f 145{
c6b36280 146 // Set the axis of histograms
7af3df7f 147 fAxis = axis;
148 MakeHistograms(axis);
149}
150//____________________________________________________________________
151void
c6b36280 152AliFMDSpectraDisplay::AliFMDSpectraDisplayTop::ClearCanvas()
7af3df7f 153{
c6b36280 154 // Clear the canvas
7af3df7f 155 if (!fCanvas) return;
156 fCanvas->Clear();
157}
158
159//____________________________________________________________________
160void
c6b36280 161AliFMDSpectraDisplay::AliFMDSpectraDisplayTop::ClearList()
7af3df7f 162{
c6b36280 163 // Clear the lsit
7af3df7f 164 fList.DeleteItem(fList.GetFirstItem());
165 UpdateList();
166}
167
168
169//____________________________________________________________________
170void
c6b36280 171AliFMDSpectraDisplay::AliFMDSpectraDisplayTop::HandleReturn(TGListTreeItem * f)
7af3df7f 172{
c6b36280 173 // HAndle when return is pressed
7af3df7f 174 if (!f) {
175 fList.UnselectAll(kFALSE);
176 fList.SetSelected(0);
177 return;
178 }
179 fList.ToggleItem(f);
180 UpdateList();
181}
182
183
184//____________________________________________________________________
185void
c6b36280 186AliFMDSpectraDisplay::AliFMDSpectraDisplayTop::HandleKey(TGListTreeItem * f, UInt_t keysym, UInt_t)
7af3df7f 187{
c6b36280 188 // Handle a key stroke
7af3df7f 189 if (!f) {
190 fList.UnselectAll(kFALSE);
191 fList.SetSelected(0);
192 return;
193 }
194 TGListTreeItem* next = 0;
195 switch (keysym) {
196 case kKey_Up:
197 next = f->GetPrevSibling();
198 if (!next) {
199 next = f->GetParent();
200 if (next) fList.CloseItem(next);
201 }
202 break;
203 case kKey_Down:
204 next = f->GetNextSibling();
205 if (!next && f->GetParent()) {
206 next = f->GetParent()->GetNextSibling();
207 fList.CloseItem(f->GetParent());
208 }
209 break;
210 case kKey_Left:
211 next = f->GetParent();
212 if (next) fList.CloseItem(next);
213 break;
214 case kKey_Right:
215 next = f->GetFirstChild();
216 if (next) fList.OpenItem(f);
217 break;
218 case kKey_PageUp:
219 fList.PageUp(kTRUE);
220 next = fList.GetSelected();
221 break;
222 case kKey_PageDown:
223 fList.PageDown(kTRUE);
224 next = fList.GetSelected();
225 break;
226 }
227 // if (next) gClient->NeedRedraw(&fList);
228 if (next && next != f) {
229 fList.ClearHighlighted();
230 fList.SetSelected(next);
231 HandleEntry(next,0);
232 }
233 if (next) gClient->NeedRedraw(&fList);
234}
235
236//____________________________________________________________________
237void
c6b36280 238AliFMDSpectraDisplay::AliFMDSpectraDisplayTop::HandleEntry(TGListTreeItem* entry, Int_t /*id*/)
7af3df7f 239{
c6b36280 240 // Handle selection of entries
7af3df7f 241 TGListTreeItem* old = fCurrentEntry;
242 if (entry) {
243 if (!entry->GetUserData()) return;
244 fCurrentEntry = entry;
245 }
246 else {
247 fCurrentEntry = 0;
248 ClearCanvas();
249 }
250 if (old != fCurrentEntry && fCanvas) fCanvas->cd();
251 SelectionChanged();
252}
253
254//____________________________________________________________________
255void
c6b36280 256AliFMDSpectraDisplay::AliFMDSpectraDisplayTop::UpdateList()
7af3df7f 257{
c6b36280 258 // Update list
7af3df7f 259 gClient->NeedRedraw(&fList);
260}
261
262//____________________________________________________________________
263void
c6b36280 264AliFMDSpectraDisplay::AliFMDSpectraDisplayTop::UpdateCanvas()
7af3df7f 265{
c6b36280 266 // update canvas
7af3df7f 267 if (!fCanvas) return;
268 fCanvas->Modified();
269 fCanvas->Update();
270 fCanvas->cd();
271}
272//____________________________________________________________________
c6b36280 273TObject* AliFMDSpectraDisplay::AliFMDSpectraDisplayTop::Current() const
7af3df7f 274{
c6b36280 275 // Get currently selected entry if any
7af3df7f 276 if (!fCurrentEntry) return 0;
277 if (!fCurrentEntry->GetUserData()) return 0;
278 return static_cast<TObject*>(fCurrentEntry->GetUserData());
279}
280
281//__________________________________________________________________
c6b36280 282AliFMDSpectraDisplay::AliFMDSpectraDisplayDetector&
283AliFMDSpectraDisplay::AliFMDSpectraDisplayTop::GetOrAdd(UShort_t id)
7af3df7f 284{
c6b36280 285 // Get or add a sub-element
7af3df7f 286 Int_t idx = id - 1;
287 AliFMDSpectraDisplayDetector* d = 0;
288 if (fChildren.GetEntriesFast() <= idx ||
289 !(d = static_cast<AliFMDSpectraDisplayDetector*>(fChildren.At(idx)))) {
290 d = new AliFMDSpectraDisplayDetector(id, *this);
291 fChildren.AddAtAndExpand(d, idx);
292 // GetTop().GetList().SortChildren(&fEntry);
293 // GetTop().GetList().Sort(&(d->GetEntry()));
294 }
295 return *d;
296}
297//__________________________________________________________________
c6b36280 298void
299AliFMDSpectraDisplay::AliFMDSpectraDisplayTop::Fill(UShort_t det, Char_t ring,
300 UShort_t sec, UShort_t str,
301 Double_t v)
7af3df7f 302{
303 AliFMDSpectraDisplayDetector& d = GetOrAdd(det);
304 d.Fill(ring, sec, str, v);
305 DoFill(v);
306}
307//__________________________________________________________________
308Int_t
c6b36280 309AliFMDSpectraDisplay::AliFMDSpectraDisplayTop::Compare(const TObject*) const
7af3df7f 310{
c6b36280 311 // Compare to another object
7af3df7f 312 return -1;
313}
314//==================================================================
c6b36280 315AliFMDSpectraDisplay::AliFMDSpectraDisplayDetector::AliFMDSpectraDisplayDetector(UShort_t det,
7af3df7f 316 AliFMDSpectraDisplayTop& tree)
317 : AliFMDSpectraDisplayElement(Form("FMD%d", det), "FMD Sub-detector"),
318 fId(det),
319 fParent(tree),
320 fChildren(0),
321 fEntry(*(tree.GetList().AddItem(&(tree.GetEntry()), GetName())))
322{
c6b36280 323 // Constructor
7af3df7f 324 fEntry.SetUserData(this);
325 fEntry.SetText(GetName());
326 if (GetTop().GetAxis()) MakeHistograms(GetTop().GetAxis());
327}
328//__________________________________________________________________
c6b36280 329AliFMDSpectraDisplay::AliFMDSpectraDisplayRing&
330AliFMDSpectraDisplay::AliFMDSpectraDisplayDetector::GetOrAdd(Char_t id)
7af3df7f 331{
c6b36280 332 // Get or add an element
7af3df7f 333 Int_t idx = (id == 'I' || id == 'i') ? 0 : 1;
334 AliFMDSpectraDisplayRing* r = 0;;
335 if (fChildren.GetEntriesFast() <= idx ||
336 !(r = static_cast<AliFMDSpectraDisplayRing*>(fChildren.At(idx)))) {
337 r = new AliFMDSpectraDisplayRing(id, *this);
338 fChildren.AddAtAndExpand(r, idx);
339 // GetTop().GetList().SortChildren(&fEntry);
340 // GetTop().GetList().Sort(&(r->GetEntry()));
341 }
342 return *r;
343}
344//__________________________________________________________________
c6b36280 345void
346AliFMDSpectraDisplay::AliFMDSpectraDisplayDetector::Fill(Char_t ring,
347 UShort_t sec,
348 UShort_t str,
349 Double_t v)
7af3df7f 350{
c6b36280 351 // Fill values
7af3df7f 352 AliFMDSpectraDisplayRing& r = GetOrAdd(ring);
353 r.Fill(sec, str, v);
354 DoFill(v);
355}
356//__________________________________________________________________
357Int_t
c6b36280 358AliFMDSpectraDisplay::AliFMDSpectraDisplayDetector::Compare(const TObject* o) const
7af3df7f 359{
c6b36280 360 // Compare to other element
7af3df7f 361 std::cout << "Comparing detector to a " << o->ClassName() << std::endl;
c6b36280 362 if (o->IsA() == AliFMDSpectraDisplay::AliFMDSpectraDisplayDetector::Class()) {
7af3df7f 363 const AliFMDSpectraDisplayDetector* ro =
364 static_cast<const AliFMDSpectraDisplayDetector*>(o);
365 return (Id() < ro->Id() ? -1 :
366 Id() == ro->Id() ? 0 : 1);
367 }
368 return -1;
369}
370//==================================================================
c6b36280 371AliFMDSpectraDisplay::AliFMDSpectraDisplayRing::AliFMDSpectraDisplayRing(Char_t id,
7af3df7f 372 AliFMDSpectraDisplayDetector& d)
373 : AliFMDSpectraDisplayElement(Form("FMD%d%c", d.Id(), id), "FMD Ring"),
374 fParent(d),
375 fId(id),
376 fChildren(0),
377 fEntry(*(GetTop().GetList().AddItem(&(d.GetEntry()), GetName(), this)))
378{
c6b36280 379 // Constructor
7af3df7f 380 fEntry.SetText(GetName());
381 if (GetTop().GetAxis()) MakeHistograms(GetTop().GetAxis());
382}
383//__________________________________________________________________
c6b36280 384AliFMDSpectraDisplay::AliFMDSpectraDisplaySector&
385AliFMDSpectraDisplay::AliFMDSpectraDisplayRing::GetOrAdd(UShort_t id)
7af3df7f 386{
c6b36280 387 // Get or add another element
7af3df7f 388 AliFMDSpectraDisplaySector* s = 0;
389 if (fChildren.GetEntriesFast() <= id ||
390 !(s = static_cast<AliFMDSpectraDisplaySector*>(fChildren.At(id)))) {
391 s = new AliFMDSpectraDisplaySector(id, *this);
392 fChildren.AddAtAndExpand(s, id);
393 // GetTop().GetList().SortChildren(&fEntry);
394 // GetTop().GetList().Sort(&(s->GetEntry()));
395 }
396 return *s;
397}
398//__________________________________________________________________
c6b36280 399void
400AliFMDSpectraDisplay::AliFMDSpectraDisplayRing::Fill(UShort_t sec,
401 UShort_t str,
402 Double_t v)
7af3df7f 403{
c6b36280 404 // Fill values
7af3df7f 405 AliFMDSpectraDisplaySector& s = GetOrAdd(sec);
406 s.Fill(str, v);
407 DoFill(v);
408}
409//__________________________________________________________________
410Int_t
c6b36280 411AliFMDSpectraDisplay::AliFMDSpectraDisplayRing::Compare(const TObject* o) const
7af3df7f 412{
c6b36280 413 // Compare to other element
7af3df7f 414 std::cout << "Comparing ring to a " << o->ClassName() << std::endl;
c6b36280 415 if (o->IsA() == AliFMDSpectraDisplay::AliFMDSpectraDisplayRing::Class()) {
7af3df7f 416 const AliFMDSpectraDisplayRing* ro =
417 static_cast<const AliFMDSpectraDisplayRing*>(o);
418 return (Id() < ro->Id() ? -1 :
419 Id() == ro->Id() ? 0 : 1);
420 }
421 return -1;
422}
423//==================================================================
c6b36280 424AliFMDSpectraDisplay::AliFMDSpectraDisplaySector::AliFMDSpectraDisplaySector(UShort_t id,
7af3df7f 425 AliFMDSpectraDisplayRing& r)
426 : AliFMDSpectraDisplayElement(Form("FMD%d%c_%02d",r.DetectorId(),r.Id(),id),
427 "FMD Sector"),
428 fParent(r),
429 fId(id),
430 fChildren(0),
431 fEntry(*(GetTop().GetList().AddItem(&(r.GetEntry()), GetName(), this)))
432{
c6b36280 433 // Constructor
7af3df7f 434 fEntry.SetText(GetName());
435 if (GetTop().GetAxis()) MakeHistograms(GetTop().GetAxis());
436}
437//__________________________________________________________________
c6b36280 438AliFMDSpectraDisplay::AliFMDSpectraDisplayStrip&
439AliFMDSpectraDisplay::AliFMDSpectraDisplaySector::GetOrAdd(UShort_t id)
7af3df7f 440{
c6b36280 441 // Get or add another element
7af3df7f 442 AliFMDSpectraDisplayStrip* s = 0;
443 if (fChildren.GetEntriesFast() <= id ||
444 !(s = static_cast<AliFMDSpectraDisplayStrip*>(fChildren.At(id)))) {
445 s = new AliFMDSpectraDisplayStrip(id, *this);
446 fChildren.AddAtAndExpand(s, id);
447 // GetTop().GetList().SortChildren(&fEntry);
448 // GetTop().GetList().Sort(&(s->GetEntry()));
449 }
450 return *s;
451}
452//__________________________________________________________________
c6b36280 453void
454AliFMDSpectraDisplay::AliFMDSpectraDisplaySector::Fill(UShort_t str,
455 Double_t v)
7af3df7f 456{
c6b36280 457 // Fill values
7af3df7f 458 AliFMDSpectraDisplayStrip& s = GetOrAdd(str);
459 s.Fill(v);
460 DoFill(v);
461}
462//__________________________________________________________________
463Int_t
c6b36280 464AliFMDSpectraDisplay::AliFMDSpectraDisplaySector::Compare(const TObject* o) const
7af3df7f 465{
c6b36280 466 // Compare to another elemnt
7af3df7f 467 std::cout << "Comparing sector to a " << o->ClassName() << std::endl;
c6b36280 468 if (o->IsA() == AliFMDSpectraDisplay::AliFMDSpectraDisplaySector::Class()) {
7af3df7f 469 const AliFMDSpectraDisplaySector* ro =
470 static_cast<const AliFMDSpectraDisplaySector*>(o);
471 return (Id() < ro->Id() ? -1 :
472 Id() == ro->Id() ? 0 : 1);
473 }
474 return -1;
475}
476//==================================================================
c6b36280 477AliFMDSpectraDisplay::AliFMDSpectraDisplayStrip::AliFMDSpectraDisplayStrip(UShort_t id,
7af3df7f 478 AliFMDSpectraDisplaySector& s)
479 : AliFMDSpectraDisplayElement(Form("FMD%d%c_%02d_%03d",
480 s.DetectorId(), s.RingId(),
481 s.Id(), id), "FMD Strip"),
482 fParent(s),
483 fId(id),
484 fEntry(*(GetTop().GetList().AddItem(&(s.GetEntry()), GetName(), this)))
485{
c6b36280 486 // Constructor
7af3df7f 487 fEntry.SetText(GetName());
488 fEntry.SetPictures(GetTop().GetH1Pic(), GetTop().GetH1Pic());
489 if (GetTop().GetAxis()) MakeHistograms(GetTop().GetAxis());
490}
491//__________________________________________________________________
c6b36280 492void
493AliFMDSpectraDisplay::AliFMDSpectraDisplayStrip::Fill(Double_t v)
7af3df7f 494{
c6b36280 495 // Fill values
7af3df7f 496 DoFill(v);
497}
498//__________________________________________________________________
499Int_t
c6b36280 500AliFMDSpectraDisplay::AliFMDSpectraDisplayStrip::Compare(const TObject* o) const
7af3df7f 501{
c6b36280 502 // Compare to another element
7af3df7f 503 std::cout << "Comparing strip to a " << o->ClassName() << std::endl;
c6b36280 504 if (o->IsA() == AliFMDSpectraDisplay::AliFMDSpectraDisplayStrip::Class()) {
7af3df7f 505 const AliFMDSpectraDisplayStrip* ro =
506 static_cast<const AliFMDSpectraDisplayStrip*>(o);
507 return (Id() < ro->Id() ? -1 :
508 Id() == ro->Id() ? 0 : 1);
509 }
510 return -1;
511}
512
513//==================================================================
514AliFMDSpectraDisplay::AliFMDSpectraDisplay()
515 : AliFMDPattern(),
516 fSelector(gClient->GetRoot(), 100, 100),
517 fTop(fSelector, fAux)
518{
c6b36280 519 // Constructor
520 // AddLoad(AliFMDInput::kRaw);
7af3df7f 521 SetName("RAW");
522 SetTitle("RAW");
523
524 fTop.Connect("SelectionChanged()",
525 "AliFMDSpectraDisplay", this, "HandleDraw()");
526
527 fSelector.MapSubwindows();
528 fSelector.Resize(fSelector.GetDefaultSize());
529 fSelector.MapWindow();
530}
531
532//__________________________________________________________________
533Bool_t
534AliFMDSpectraDisplay::HandleDraw()
535{
c6b36280 536 // Handle draw request
7af3df7f 537 TObject* user = fTop.Current();
538 if (!user) return kFALSE;
c6b36280 539 if (!user->InheritsFrom(AliFMDSpectraDisplay::AliFMDSpectraDisplayElement::Class())) {
7af3df7f 540 Warning("HandleDraw", "%s does not inherit from Spectra::Element",
541 user->GetName());
542 return kFALSE;
543 }
544 fAux->cd();
545 AliFMDSpectraDisplayElement* e
546 = static_cast<AliFMDSpectraDisplayElement*>(user);
547 e->Show("hist", fSlider->GetMinimum(), fSlider->GetMaximum());
548 fAux->Modified();
549 fAux->Update();
550 fAux->cd();
551 return kTRUE;
552}
553//__________________________________________________________________
554void
555AliFMDSpectraDisplay::MakeAux()
556{
c6b36280 557 // MAke auxilary canvas
7af3df7f 558 AliFMDPattern::MakeAux();
559 if (!fAux) return;
560 fTop.SetAxis(fSpec->GetXaxis());
561}
562//__________________________________________________________________
563void
564AliFMDSpectraDisplay::DrawAux()
565{
566 // Draw in the Aux the canvas
567 // For example draw the spectra
568 // or such stuff
569 if (fTop.Current() != &fTop && HandleDraw()) return;
570 AliFMDPattern::DrawAux();
571}
572//__________________________________________________________________
573Bool_t
574AliFMDSpectraDisplay::ProcessHit(AliFMDHit* hit, TParticle* p)
575{
c6b36280 576 // Process a hit
7af3df7f 577 fTop.Fill(hit->Detector(),
578 hit->Ring(),
579 hit->Sector(),
580 hit->Strip(),
581 hit->Edep());
582 return AliFMDPattern::ProcessHit(hit, p);
583}
584//__________________________________________________________________
585Bool_t
586AliFMDSpectraDisplay::ProcessDigit(AliFMDDigit* digit)
587{
c6b36280 588 // Process a digit
7af3df7f 589 fTop.Fill(digit->Detector(),
590 digit->Ring(),
591 digit->Sector(),
592 digit->Strip(),
593 digit->Counts());
594 return AliFMDDisplay::ProcessDigit(digit);
595}
596//__________________________________________________________________
597Bool_t
598AliFMDSpectraDisplay::ProcessSDigit(AliFMDSDigit* sdigit)
599{
c6b36280 600 // Process a summable digit
7af3df7f 601 fTop.Fill(sdigit->Detector(),
602 sdigit->Ring(),
603 sdigit->Sector(),
604 sdigit->Strip(),
605 sdigit->Counts());
606 return AliFMDDisplay::ProcessSDigit(sdigit);
607}
608//__________________________________________________________________
609Bool_t
610AliFMDSpectraDisplay::ProcessRawDigit(AliFMDDigit* digit)
611{
c6b36280 612 // Process a raw digit
7af3df7f 613 return ProcessDigit(digit);
614}
615//__________________________________________________________________
616Bool_t
617AliFMDSpectraDisplay::ProcessRecPoint(AliFMDRecPoint* recpoint)
618{
c6b36280 619 // Process a rec-point
7af3df7f 620 fTop.Fill(recpoint->Detector(),
621 recpoint->Ring(),
622 recpoint->Sector(),
623 recpoint->Strip(),
624 recpoint->Particles());
625 return AliFMDDisplay::ProcessRecPoint(recpoint);
626}
627//__________________________________________________________________
628Bool_t
629AliFMDSpectraDisplay::ProcessESD(UShort_t det, Char_t rng, UShort_t sec,
630 UShort_t str, Float_t x, Float_t mult)
631{
c6b36280 632 // Process ESD entry
7af3df7f 633 fTop.Fill(det, rng, sec, str, mult);
634 return AliFMDDisplay::ProcessESD(det, rng, sec, str, x, mult);
635}
636//__________________________________________________________________
637//
638// EOF
639//