24#ifndef LSST_M1M3_SS_INCLUDE_FORCECOMPONENTSETTINGS_H_
25#define LSST_M1M3_SS_INCLUDE_FORCECOMPONENTSETTINGS_H_
27#include <yaml-cpp/yaml.h>
34 float MaxRateOfChange;
37 void set(YAML::Node node) {
38 MaxRateOfChange = node[
"MaxRateOfChange"].as<
float>();
39 NearZeroValue = node[
"NearZeroValue"].as<
float>();
Definition ForceComponentSettings.h:33