#ifndef ALIFILTER_H #define ALIFILTER_H /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * * See cxx source for full Copyright notice */ /* $Id$ */ // // base class for high level filter algorithms // Derived classes should implement a default constructor and // the virtual method Filter // #include class AliRawVEvent; class AliESDEvent; class AliFilter: public TObject { public: virtual Bool_t Filter(AliRawVEvent* event, AliESDEvent* esd) = 0; private: ClassDef(AliFilter, 0) // base class for high level filter algorithms }; #endif