00001 00002 //$Id: DmxStatistic.h,v 1.12 2000/12/08 16:55:38 brebel Exp $ 00003 // 00004 //DmxStatistic.h 00005 // 00006 //DmxStatistic is a virtual base class for Statistic objects 00007 // 00008 //Author: B. Rebel 6/2000 00010 00011 #ifndef DMXSTATISTIC_H 00012 #define DMXSTATISTIC_H 00013 00014 #include "TObject.h" 00015 00016 class DmxStatistic : public TObject 00017 { 00018 00019 public: 00020 00021 DmxStatistic(); 00022 virtual ~DmxStatistic(); 00023 virtual Float_t GetGoodness() const = 0; 00024 virtual Float_t GetTieBreaker() const = 0; 00025 00026 private: 00027 00028 //Data Members 00029 //none 00030 00031 ClassDef(DmxStatistic,0) //DmxStatistic 00032 }; 00033 00034 #endif // DMXSTATISTIC_H
1.3.9.1