00001 00002 // $Id: DmxStatTypes.h,v 1.3 2006/06/21 01:18:18 rhatcher Exp $ 00003 // 00004 // DmxStatTypes 00005 // 00006 // DmxStatTypes defines enumerations for the legal statistics 00007 // and provides some general utilities in regards to those enumerations 00008 // 00009 // Author: B. Rebel 2001.07.09 00010 // 00012 #include <string> 00013 00014 #ifndef DMXSTATTYPES_H 00015 #define DMXSTATTYPES_H 00016 00017 #ifndef ROOT_Rtypes 00018 #include "Rtypes.h" 00019 #endif 00020 00021 namespace DmxStatTypes { 00022 00023 typedef enum EStatType { 00024 kNone, 00025 kChi2, 00026 kRms 00027 } StatType_t; 00028 00029 std::string GetStatTypeString(EStatType statistic); 00030 00031 } 00032 00033 #endif // DMXSTATTYPES_H