Guest User

Untitled

a guest
Jul 15th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. int Map_Consistency_Evaluator::update_grid(
  2. std::vector<mb_swath_struct> &mb_swath_list,
  3. std::vector<sensor_record> &nav_private,
  4. std::vector<sensor_record> &nav_shared, std::string mode,
  5. std::string path_name)
  6. {
  7. // Find first multibeam observation to use
  8. unsigned int start_index = 0;
  9. ofstream point_cloud_out;
  10. // ....
  11. if (!path_name.empty() && log_point_clouds)
  12. {
  13. string point_cloud_filename = path_name.append("_point_cloud.data");
  14. point_cloud_out.open(point_cloud_filename.c_str());
  15. }
  16. // as path_name is always empty, the file is never created
  17. }
Add Comment
Please, Sign In to add comment