00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043 from dynamic_reconfigure.encoding import extract_params
00044
00045 inf = float('inf')
00046
00047 config_description = {'upper': 'DEFAULT', 'lower': 'groups', 'srcline': 233, 'name': 'Default', 'parent': 0, 'srcfile': '/opt/ros/fuerte/stacks/dynamic_reconfigure/src/dynamic_reconfigure/parameter_generator.py', 'cstate': 'true', 'parentname': 'Default', 'class': 'DEFAULT', 'field': 'default', 'state': True, 'parentclass': '', 'groups': [], 'parameters': [{'srcline': 259, 'description': 'The minimum height to include from the point cloud.', 'max': 10.0, 'cconsttype': 'const double', 'ctype': 'double', 'srcfile': '/opt/ros/fuerte/stacks/dynamic_reconfigure/src/dynamic_reconfigure/parameter_generator.py', 'name': 'min_height', 'edit_method': '', 'default': 0.1, 'level': 0, 'min': -10.0, 'type': 'double'}, {'srcline': 259, 'description': 'The maximum height to include from the point cloud.', 'max': 10.0, 'cconsttype': 'const double', 'ctype': 'double', 'srcfile': '/opt/ros/fuerte/stacks/dynamic_reconfigure/src/dynamic_reconfigure/parameter_generator.py', 'name': 'max_height', 'edit_method': '', 'default': 0.15, 'level': 0, 'min': -10.0, 'type': 'double'}, {'srcline': 259, 'description': 'The minimum angle of the resulting laser scan.', 'max': 3.141592653589793, 'cconsttype': 'const double', 'ctype': 'double', 'srcfile': '/opt/ros/fuerte/stacks/dynamic_reconfigure/src/dynamic_reconfigure/parameter_generator.py', 'name': 'angle_min', 'edit_method': '', 'default': -1.5707963267948966, 'level': 0, 'min': -3.141592653589793, 'type': 'double'}, {'srcline': 259, 'description': 'The maximum angle of the resulting laser scan.', 'max': 3.141592653589793, 'cconsttype': 'const double', 'ctype': 'double', 'srcfile': '/opt/ros/fuerte/stacks/dynamic_reconfigure/src/dynamic_reconfigure/parameter_generator.py', 'name': 'angle_max', 'edit_method': '', 'default': 1.5707963267948966, 'level': 0, 'min': -3.141592653589793, 'type': 'double'}, {'srcline': 259, 'description': 'The angle increment of the resulting laser scan.', 'max': 3.141592653589793, 'cconsttype': 'const double', 'ctype': 'double', 'srcfile': '/opt/ros/fuerte/stacks/dynamic_reconfigure/src/dynamic_reconfigure/parameter_generator.py', 'name': 'angle_increment', 'edit_method': '', 'default': 0.008726646259971648, 'level': 0, 'min': 0.0, 'type': 'double'}, {'srcline': 259, 'description': 'The scan time of the resulting laser scan.', 'max': 1.0, 'cconsttype': 'const double', 'ctype': 'double', 'srcfile': '/opt/ros/fuerte/stacks/dynamic_reconfigure/src/dynamic_reconfigure/parameter_generator.py', 'name': 'scan_time', 'edit_method': '', 'default': 0.03333333333333333, 'level': 0, 'min': 0.0, 'type': 'double'}, {'srcline': 259, 'description': 'The minimum range of the resulting laser scan.', 'max': 100.0, 'cconsttype': 'const double', 'ctype': 'double', 'srcfile': '/opt/ros/fuerte/stacks/dynamic_reconfigure/src/dynamic_reconfigure/parameter_generator.py', 'name': 'range_min', 'edit_method': '', 'default': 0.45, 'level': 0, 'min': 0.0, 'type': 'double'}, {'srcline': 259, 'description': 'The maximum range of the resulting laser scan.', 'max': 100.0, 'cconsttype': 'const double', 'ctype': 'double', 'srcfile': '/opt/ros/fuerte/stacks/dynamic_reconfigure/src/dynamic_reconfigure/parameter_generator.py', 'name': 'range_max', 'edit_method': '', 'default': 10.0, 'level': 0, 'min': 0.0, 'type': 'double'}, {'srcline': 259, 'description': 'The frame id of the resulting laser scan.', 'max': '', 'cconsttype': 'const char * const', 'ctype': 'std::string', 'srcfile': '/opt/ros/fuerte/stacks/dynamic_reconfigure/src/dynamic_reconfigure/parameter_generator.py', 'name': 'output_frame_id', 'edit_method': '', 'default': '/openi_depth_frame', 'level': 0, 'min': '', 'type': 'str'}], 'type': '', 'id': 0}
00048
00049 min = {}
00050 max = {}
00051 defaults = {}
00052 level = {}
00053 type = {}
00054 all_level = 0
00055
00056
00057
00058
00059
00060
00061
00062
00063 for param in extract_params(config_description):
00064 min[param['name']] = param['min']
00065 max[param['name']] = param['max']
00066 defaults[param['name']] = param['default']
00067 level[param['name']] = param['level']
00068 type[param['name']] = param['type']
00069 all_level = all_level | param['level']
00070