diff options
Diffstat (limited to 'include/tng_io.h')
-rw-r--r-- | include/tng_io.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/include/tng_io.h b/include/tng_io.h index 719d416..621d6b2 100644 --- a/include/tng_io.h +++ b/include/tng_io.h @@ -843,6 +843,20 @@ tng_function_status tng_num_frames_per_frame_set_get int64_t *n); /** + * @brief Set the number of frames per frame set. + * @param tng_data is the trajectory of which to set the number of frames + * per frame set. + * @param n is the number of frames per frame set. + * @details This does not affect already existing frame sets. For + * consistency the number of frames per frame set should be set + * betfore creating any frame sets. + * @return TNG_SUCCESS (0) if successful. + */ +tng_function_status tng_num_frames_per_frame_set_set + (const tng_trajectory_t tng_data, + const int64_t n); + +/** * @brief Get the number of frame sets. * @details This updates tng_data->n_trajectory_frame_sets before returning it. * @param tng_data is the trajectory from which to get the number of frame sets. |