diff options
author | Thomas White <taw@physics.org> | 2012-03-06 14:46:13 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-03-06 14:46:13 +0100 |
commit | 3710defb709b7ab33ae7849873c4fb62de96e138 (patch) | |
tree | 0c50ad73099324891826efb2bbfc33a8ec03d8a3 /libcrystfel/src/reflist.c | |
parent | 95f05d7d455c9bfd28af83b72dfeb47b77fca621 (diff) |
Rename old array functions to get them out of the way of API consistency
Diffstat (limited to 'libcrystfel/src/reflist.c')
-rw-r--r-- | libcrystfel/src/reflist.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libcrystfel/src/reflist.c b/libcrystfel/src/reflist.c index 4bfa113c..69335781 100644 --- a/libcrystfel/src/reflist.c +++ b/libcrystfel/src/reflist.c @@ -596,14 +596,14 @@ void set_partial(Reflection *refl, double r1, double r2, double p, /** - * set_int: + * set_intensity: * @refl: A %Reflection * @intensity: The intensity for the reflection. * * Set the intensity for the reflection. Note that retrieval is done with * get_intensity(). **/ -void set_int(Reflection *refl, double intensity) +void set_intensity(Reflection *refl, double intensity) { refl->data.intensity = intensity; } @@ -665,12 +665,12 @@ void set_esd_intensity(Reflection *refl, double esd) /** - * set_ph: + * set_phase: * @refl: A %Reflection * @phase: New phase for the reflection * **/ -void set_ph(Reflection *refl, double phase) +void set_phase(Reflection *refl, double phase) { refl->data.phase = phase; refl->data.have_phase = 1; |