#ifndef HFILTER_H
#define HFILTER_H

#include "TObject.h"
#include "hdataobject.h"

class HFilter : public TObject {
public:
  HFilter(void);
  ~HFilter(void);
  virtual Bool_t check(TObject *obj)=0;
  ClassDef(HFilter,1) //Base class for data filters
};

#endif /* !HFILTER */

Last change: Sat May 22 12:55:07 2010
Last generated: 2010-05-22 12:55

This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.