]> git.uio.no Git - u/mrichter/AliRoot.git/blob - RAW/AliFilter.h
Update rawdata format for trigger (Christian)
[u/mrichter/AliRoot.git] / RAW / AliFilter.h
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 AliRawEvent;
17 class AliESD;
18
19
20 class AliFilter: public TObject {
21 public:
22   virtual Bool_t       Filter(AliRawEvent* event, AliESD* esd) = 0;
23
24 private:
25   ClassDef(AliFilter, 0)   // base class for high level filter algorithms
26 };
27
28 #endif