#include "TVirtualPerfStats.h"
ClassImp(TVirtualPerfStats)
TVirtualPerfStats *gPerfStats = 0;
static const char *gEventTypeNames[] = {
   "UnDefined",
   "Packet",
   "Start",
   "Stop",
   "File",
   "FileOpen",
   "FileRead",
   "Rate"
};
const char *TVirtualPerfStats::EventType(EEventType type)
{
   
   if (type < kUnDefined || type >= kNumEventType) {
      return "Illegal EEventType";
   } else {
      return gEventTypeNames[type];
   }
}
Last update: Thu Jan 17 09:05:14 2008
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.