]> git.uio.no Git - u/mrichter/AliRoot.git/blob - RICH/AliRICHDisplFast.h
Coding violation fixes.
[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
9 class AliRunLoader;
10
11 class AliRICHDisplFast : public TTask 
12 {
13 public :
14                AliRICHDisplFast() {;}
15   virtual     ~AliRICHDisplFast() {;}      
16   void ShowEvent(Int_t iEvtNmin,Int_t iEvtNmax);                                 //Display looping on events
17   void ShowEvent(Int_t iEvent)                      {ShowEvent(iEvent,iEvent);}  //Display only one event
18   static Int_t    Nparticles   (Int_t iPID,Int_t iEvent=0,AliRunLoader *p=0);    //returns a number of particles of given type
19   virtual void Exec(Option_t *opt=0);                                            //virtual do the main job
20 protected:  
21   ClassDef(AliRICHDisplFast,0)                              //Utility class to draw the current event topology
22 };
23     
24 #endif //AliRICHDisplFast_cxx
25