@@ -198,14 +198,14 @@ class RBParameters
198198 * Get the value of the specified parameter at the specified step,
199199 * throwing an error if it does not exist.
200200 */
201- Real get_step_value (const std::string & param_name, std::size_t index ) const ;
201+ Real get_step_value (const std::string & param_name, std::size_t step ) const ;
202202
203203 /* *
204204 * Get the value of the specified parameter at the specified step,
205205 * returning the provided default value if either the parameter is
206206 * not defined or the step is invalid.
207207 */
208- Real get_step_value (const std::string & param_name, std::size_t index , const Real & default_val) const ;
208+ Real get_step_value (const std::string & param_name, std::size_t step , const Real & default_val) const ;
209209
210210 /* *
211211 * Set the value of the specified parameter. If param_name
@@ -244,6 +244,19 @@ class RBParameters
244244 */
245245 Real get_extra_value (const std::string & param_name, const Real & default_val) const ;
246246
247+ /* *
248+ * Get the value of the specified "extra" parameter at the specified step,
249+ * throwing an error if it does not exist.
250+ */
251+ Real get_extra_step_value (const std::string & param_name, std::size_t step) const ;
252+
253+ /* *
254+ * Get the value of the specified extra parameter at the specified step,
255+ * returning the provided default value if either the parameter is
256+ * not defined or the step is invalid.
257+ */
258+ Real get_extra_step_value (const std::string & param_name, std::size_t step, const Real & default_val) const ;
259+
247260 /* *
248261 * Set the value of the specified extra parameter. If param_name
249262 * doesn't already exist, it is added to the extra parameters.
0 commit comments