00001 // ---------------------------------------------------------------------------- 00002 // $Id: LCDPredicate.h,v 1.3 2001/10/08 17:51:51 toshi Exp $ 00003 // ---------------------------------------------------------------------------- 00004 // 00005 // A pure virtual base class used in selecting certain 00006 // events in JetFinder. 00007 00008 #ifndef LCDPREDICATE_BASE 00009 #define LCDPREDICATE_BASE 00010 00011 #include "TObject.h" 00012 00013 class LCDPredicate{ 00014 00015 public: 00016 00017 virtual Bool_t accept(TObject* object); 00018 00019 00020 private: 00021 ClassDef(LCDPredicate,0) 00022 }; 00023 00024 #endif