Formula Student Autonomous Systems
The code for the main driverless system
Loading...
Searching...
No Matches
map.hpp File Reference
#include <map>
#include <memory>
#include <string>
#include "estimators/ekf.hpp"
#include "estimators/no_rear_wss_ekf.hpp"
Include dependency graph for map.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Variables

const std::map< std::string, std::function< std::shared_ptr< VelocityEstimator >(const VEParameters &)>, std::less<> > estimators_map_
 

Variable Documentation

◆ estimators_map_

const std::map<std::string, std::function<std::shared_ptr<VelocityEstimator>(const VEParameters&)>, std::less<> > estimators_map_
Initial value:
= {
{"ekf",
[](const VEParameters& params) -> std::shared_ptr<VelocityEstimator> {
return std::make_shared<EKF>(params);
}},
{"no_rear_wss_ekf",
[](const VEParameters& params) -> std::shared_ptr<VelocityEstimator> {
return std::make_shared<NoRearWSSEKF>(params);
}},
}

Definition at line 16 of file map.hpp.