Line data Source code
1 : #ifndef ALIFILTER_H
2 : #define ALIFILTER_H
3 : /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 : * See cxx source for full Copyright notice */
5 :
6 : /* $Id$ */
7 :
8 : //
9 : // base class for high level filter algorithms
10 : // Derived classes should implement a default constructor and
11 : // the virtual method Filter
12 : //
13 :
14 : #include <TObject.h>
15 :
16 : class AliRawVEvent;
17 : class AliESDEvent;
18 :
19 :
20 0 : class AliFilter: public TObject {
21 : public:
22 : virtual Bool_t Filter(AliRawVEvent* event, AliESDEvent* esd) = 0;
23 :
24 : private:
25 128 : ClassDef(AliFilter, 0) // base class for high level filter algorithms
26 : };
27 :
28 : #endif
|