Skip to content
Snippets Groups Projects
Commit ba9f00b9 authored by pre-commit-ci[bot]'s avatar pre-commit-ci[bot] Committed by Florent Lamiraux
Browse files

[pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci
parent 17a992fb
No related branches found
No related tags found
No related merge requests found
......@@ -88,7 +88,7 @@ class SotLoader : public SotLoaderBasic {
// \brief Compute one iteration of control.
// Basically calls fillSensors, the SoT and the readControl.
void oneIteration(const double& period);
void oneIteration(const double &period);
// \brief Fill the sensors value for the SoT.
void fillSensors(std::map<std::string, dgs::SensorValues> &sensorsIn);
......
......@@ -59,7 +59,7 @@ struct DataToLog {
void workThreadLoader(SotLoader *aSotLoader) {
ros::Rate rate(1000); // 1 kHz
double periodd (1e-3);
double periodd(1e-3);
if (ros::param::has("/sot_controller/dt")) {
ros::param::get("/sot_controller/dt", periodd);
......@@ -205,7 +205,7 @@ void SotLoader::setup() {
readControl(controlValues_);
}
void SotLoader::oneIteration(const double& period) {
void SotLoader::oneIteration(const double &period) {
fillSensors(sensorsIn_);
try {
sotController_->nominalSetSensors(sensorsIn_);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment