diff options
author | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-06-20 11:30:32 (GMT) |
---|---|---|
committer | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-06-20 11:30:32 (GMT) |
commit | 058e742768c865ab292a192c899a4f450f67d7e3 (patch) | |
tree | 2eb9619c61318770c72f29754251d9880b004278 /src | |
parent | ab29a946117a76d7af273c615ecd120ff4f2c8ed (diff) |
Added fortran functions for distance units.
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/tng_io.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/lib/tng_io.c b/src/lib/tng_io.c index 997a488..9f278b4 100644 --- a/src/lib/tng_io.c +++ b/src/lib/tng_io.c @@ -14375,6 +14375,20 @@ tng_function_status DECLSPECDLLEXPORT tng_num_molecules_get_ return(tng_num_molecules_get(tng_data, n)); } +tng_function_status DECLSPECDLLEXPORT tng_distance_unit_exponential_get_ + (const tng_trajectory_t tng_data, + int64_t *exp) +{ + return(tng_distance_unit_exponential_get(tng_data, exp)); +} + +tng_function_status DECLSPECDLLEXPORT tng_distance_unit_exponential_set_ + (const tng_trajectory_t tng_data, + const int64_t *exp) +{ + return(tng_distance_unit_exponential_set(tng_data, *exp)); +} + tng_function_status DECLSPECDLLEXPORT tng_num_frames_per_frame_set_get_ (const tng_trajectory_t tng_data, int64_t *n) |