6b17b320 |
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> |
1cb5a97c |
10 | #include "TH2.h" |
6b17b320 |
11 | class AliRICH; |
12 | |
aed240d4 |
13 | class AliRICHDisplFast : public TTask |
14 | { |
15 | public : |
e42a7b46 |
16 | AliRICHDisplFast() {;} |
17 | virtual ~AliRICHDisplFast() {;} |
1cb5a97c |
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 |
aed240d4 |
22 | protected: |
1cb5a97c |
23 | ClassDef(AliRICHDisplFast,0) //Utility class to draw the current event topology |
6b17b320 |
24 | }; |
25 | |
26 | #endif // #ifdef AliRICHDisplFast_cxx |
27 | |