]> git.uio.no Git - u/mrichter/AliRoot.git/blame - RICH/AliRICHDisplFast.h
Coding violation fixes.
[u/mrichter/AliRoot.git] / RICH / AliRICHDisplFast.h
CommitLineData
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>
d3eb6079 8
9class AliRunLoader;
6b17b320 10
aed240d4 11class AliRICHDisplFast : public TTask
12{
13public :
e42a7b46 14 AliRICHDisplFast() {;}
15 virtual ~AliRICHDisplFast() {;}
d3eb6079 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
aed240d4 20protected:
1cb5a97c 21 ClassDef(AliRICHDisplFast,0) //Utility class to draw the current event topology
6b17b320 22};
23
d3eb6079 24#endif //AliRICHDisplFast_cxx
6b17b320 25