All Classes Namespaces Files Functions Variables Enumerations Enumerator
libs/range_sensor/RangeSensorParameter.h
Go to the documentation of this file.
00001 #ifndef QRK_RANGE_SENSOR_PARAMETER_H
00002 #define QRK_RANGE_SENSOR_PARAMETER_H
00003 
00013 #include <string>
00014 
00015 
00016 namespace qrk
00017 {
00019   class RangeSensorParameter
00020   {
00021   public:
00022     enum {
00023       MODL = 0,           
00024       DMIN,               
00025       DMAX,               
00026       ARES, 
00027       AMIN, 
00028       AMAX, 
00029       AFRT, 
00030       SCAN, 
00031     };
00032 
00033     std::string model;          
00034     long distance_min;          
00035     long distance_max;          
00036     int area_total;             
00037     int area_min;               
00038     int area_max;               
00039     int area_front;             
00040     int scan_rpm;               
00041 
00042     RangeSensorParameter(void)
00043       : model(""), distance_min(0), distance_max(0), area_total(0),
00044         area_min(0), area_max(0), area_front(0), scan_rpm(600)
00045     {
00046     }
00047   };
00048 }
00049 
00050 #endif /* !QRK_RANGE_SENSOR_PARAMETER_H */