00001 #ifndef REGION_HH_ 00002 #define REGION_HH_ 00003 00004 00005 namespace pftools { 00006 00007 enum Region { 00008 NOREGION = 0, BARREL_POS = 1, TRANSITION_POS = 2, ENDCAP_POS = 3 00009 }; 00010 00011 const char* const RegionNames[] = { "NOREGION", "BARREL_POS", "TRANSITION_POS", "ENDCAP_POS" }; 00012 00013 00014 } 00015 #endif //REGION_HH_