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 "motion_lib/vel_process_model/base_vel_process_model.hpp"
#include "motion_lib/vel_process_model/particle_model.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< BaseVelocityProcessModel >()>, std::less<> > vel_process_models_map
 

Variable Documentation

◆ vel_process_models_map

const std::map<std::string, std::function<std::shared_ptr<BaseVelocityProcessModel>()>, std::less<> > vel_process_models_map
Initial value:
= {
{"ca_particle_model",
[]() -> std::shared_ptr<BaseVelocityProcessModel> {
return std::make_shared<CAParticleModel>();
}},
}

Definition at line 15 of file map.hpp.