00001 #ifndef _ClusterData_h_ 00002 #define _ClusterData_h_ 00003 00004 #include <utility> 00005 00006 class ClusterData 00007 { 00008 public: 00009 bool isInBarrel, isNormalOriented, isStraight,isComplete, isUnlocked; 00010 bool isXBorder; 00011 int posBorder; 00012 std::pair<float,float> tangent; 00013 std::pair<unsigned short int,short int> size; 00014 }; 00015 00016 #endif