]> git.uio.no Git - u/mrichter/AliRoot.git/blame - RAW/AliFilter.h
Adding detailed debug info in case of fatal error during the decoding
[u/mrichter/AliRoot.git] / RAW / AliFilter.h
CommitLineData
e10815f1 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
16class AliRawEvent;
17class AliESD;
18
19
20class AliFilter: public TObject {
21public:
22 virtual Bool_t Filter(AliRawEvent* event, AliESD* esd) = 0;
23
24private:
25 ClassDef(AliFilter, 0) // base class for high level filter algorithms
26};
27
28#endif