]> git.uio.no Git - u/mrichter/AliRoot.git/blob - RICH/AliRICHDisplFast.h
Added functionalities in display the RICH event and pattern recognition. Minor bugs...
[u/mrichter/AliRoot.git] / RICH / AliRICHDisplFast.h
1 #ifndef AliRICHDisplFast_h
2 #define AliRICHDisplFast_h
3
4 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5  * See cxx source for full Copyright notice                               */
6
7 #include <TTask.h>
8 #include "AliRICH.h"
9 #include <AliRun.h>
10 #include "TH2.h"
11 class AliRICH;
12
13 class AliRICHDisplFast : public TTask 
14 {
15 public :
16                AliRICHDisplFast() {;}
17   virtual     ~AliRICHDisplFast() {;}      
18   static  void DrawSectors();                               //Draw sectors in plot 
19   void ShowEvent(Int_t iEvtNmin,Int_t iEvtNmax);            // Display looping on events
20   void ShowEvent(Int_t iEvent) {ShowEvent(iEvent,iEvent);}  // Display only one event
21   virtual void Exec(Option_t *opt=0);                       //virtual do the main job
22 protected:  
23   ClassDef(AliRICHDisplFast,0)                              //Utility class to draw the current event topology
24 };
25     
26 #endif // #ifdef AliRICHDisplFast_cxx
27