diff --git a/cartographer_ros/cartographer_ros/offline_node.cc b/cartographer_ros/cartographer_ros/offline_node.cc index 0361faf..1456564 100644 --- a/cartographer_ros/cartographer_ros/offline_node.cc +++ b/cartographer_ros/cartographer_ros/offline_node.cc @@ -274,34 +274,32 @@ void RunOfflineNode(const MapBuilderFactory& map_builder_factory) { } const std::string topic = node.node_handle()->resolveName(msg.getTopic(), false /* resolve */); - if (bag_sensor_topics.at(bag_index).count(topic) == 0) { - continue; - } - - if (msg.isType()) { - node.HandleLaserScanMessage(trajectory_id, topic, - msg.instantiate()); - } - if (msg.isType()) { - node.HandleMultiEchoLaserScanMessage( - trajectory_id, topic, - msg.instantiate()); - } - if (msg.isType()) { - node.HandlePointCloud2Message( - trajectory_id, topic, msg.instantiate()); - } - if (msg.isType()) { - node.HandleImuMessage(trajectory_id, topic, - msg.instantiate()); - } - if (msg.isType()) { - node.HandleOdometryMessage(trajectory_id, topic, - msg.instantiate()); - } - if (msg.isType()) { - node.HandleNavSatFixMessage(trajectory_id, topic, - msg.instantiate()); + if (bag_sensor_topics.at(bag_index).count(topic) > 0) { + if (msg.isType()) { + node.HandleLaserScanMessage(trajectory_id, topic, + msg.instantiate()); + } + if (msg.isType()) { + node.HandleMultiEchoLaserScanMessage( + trajectory_id, topic, + msg.instantiate()); + } + if (msg.isType()) { + node.HandlePointCloud2Message( + trajectory_id, topic, msg.instantiate()); + } + if (msg.isType()) { + node.HandleImuMessage(trajectory_id, topic, + msg.instantiate()); + } + if (msg.isType()) { + node.HandleOdometryMessage(trajectory_id, topic, + msg.instantiate()); + } + if (msg.isType()) { + node.HandleNavSatFixMessage(trajectory_id, topic, + msg.instantiate()); + } } clock.clock = msg.getTime(); clock_publisher.publish(clock);