00001 00002 // $Id: DmxPlaneTypes.h,v 1.3 2006/06/21 01:18:18 rhatcher Exp $ 00003 // 00004 // DmxPlaneTypes 00005 // 00006 // DmxPlaneTypes defines enumerations for the legal plane types and 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 DMXPLANETYPES_H 00015 #define DMXPLANETYPES_H 00016 00017 #ifndef ROOT_Rtypes 00018 #include "Rtypes.h" 00019 #endif 00020 00021 namespace DmxPlaneTypes { 00022 00023 typedef enum EPlaneType { 00024 kUnknown, 00025 kShower, 00026 kMuon 00027 } PlaneType_t; 00028 00029 std::string GetPlaneTypeString(EPlaneType planetype); 00030 00031 } 00032 00033 #endif // DMXPLANETYPES_H 00034
1.3.9.1