Hi all, I am having some trouble with getting parameters from a launch file. The same bit of code worked well with a node driver, but when i switched to a nodelet driver, it fails. I am running on Ubuntu 10.10, ros unstable. Here are some more details: I have the following bit of code running to get a parameter: ros::NodeHandle nh_private ("~"); if (!nh_private.getParam ("enable_IMU_CALCDATA", enable_IMU_CALCDATA_)) enable_IMU_CALCDATA_ = false; When I run that code with a node driver, everything works fine. I use the following launch file: However, when I run the code with a nodelet driver, it fails to check the param, and assumes the default (false) value. This is the launch file for the nodelet: Any help would be appreciated! Thanks, Ivan Dryanovski