00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00012 #include "DeMux/DmxStatTypes.h"
00013 #include "MessageService/MsgService.h"
00014
00015 CVSID("$Id: DmxStatTypes.cxx,v 1.2 2006/06/21 01:18:18 rhatcher Exp $");
00016
00017
00018
00019 string DmxStatTypes::GetStatTypeString(EStatType statistic) {
00020
00021
00022
00023
00024
00025
00026
00027
00028 switch ( statistic ) {
00029 case kChi2: return "Chi2";
00030 case kRms: return "RMS";
00031 default:
00032 MSG("Dmx",Msg::kWarning)
00033 << "Dmx::GetStatisticString with unknown value "
00034 << (int)statistic << endl;
00035 return "UNKNOWN";
00036 }
00037 }