Skip to content

Commit

Permalink
fixed concatenated_weights exposure.
Browse files Browse the repository at this point in the history
  • Loading branch information
SamFayolle committed Sep 26, 2024
1 parent 8b04ca6 commit 1dd8eb1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,7 @@ void expose_estimation(py::module &m) {
get_docstring("ObservationCollection.concatenated_times").c_str() )
.def_property_readonly("concatenated_float_times", &tom::ObservationCollection<double, TIME_TYPE>::getConcatenatedDoubleTimeVector,
get_docstring("ObservationCollection.concatenated_times").c_str() )
.def_property_readonly("concatenated_weights", &tom::ObservationCollection<double, TIME_TYPE>::getConcatenatedWeightVector,
.def_property_readonly("concatenated_weights", &tom::ObservationCollection<double, TIME_TYPE>::getConcatenatedWeights,
get_docstring("ObservationCollection.concatenated_weights").c_str() )
.def_property_readonly("concatenated_observations", &tom::ObservationCollection<double, TIME_TYPE>::getObservationVector,
get_docstring("ObservationCollection.concatenated_observations").c_str() )
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ void expose_estimated_parameter_setup(py::module &m) {
.value("constant_drag_coefficient_type", tep::EstimatebleParametersEnum::constant_drag_coefficient)
.value("radiation_pressure_coefficient_type", tep::EstimatebleParametersEnum::radiation_pressure_coefficient)
.value("arc_wise_radiation_pressure_coefficient_type", tep::EstimatebleParametersEnum::arc_wise_radiation_pressure_coefficient)
.value("spherical_harmonics_cosine_coefficient_block_type", tep::EstimatebleParametersEnum::arc_wise_initial_body_state)
.value("spherical_harmonics_cosine_coefficient_block_type", tep::EstimatebleParametersEnum::spherical_harmonics_cosine_coefficient_block)
.value("spherical_harmonics_sine_coefficient_block_type", tep::EstimatebleParametersEnum::spherical_harmonics_sine_coefficient_block)
.value("constant_rotation_rate_type", tep::EstimatebleParametersEnum::constant_rotation_rate)
.value("rotation_pole_position_type", tep::EstimatebleParametersEnum::rotation_pole_position)
Expand Down

0 comments on commit 1dd8eb1

Please sign in to comment.