diff options
author | Thomas White <taw@physics.org> | 2014-03-03 17:27:00 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2014-03-03 17:27:00 +0100 |
commit | bd25e167efdbaf1ee62b080b7623ee56fc1a76e8 (patch) | |
tree | 02d434ed9c1de4dd0edfd954961b53ee72d27373 | |
parent | 89862e5d5bc8814cfc483d9e9e50fbe7937803b4 (diff) |
Update docs
-rw-r--r-- | doc/reference/libcrystfel/CrystFEL-sections.txt | 13 | ||||
-rw-r--r-- | libcrystfel/src/reflist.c | 4 | ||||
-rw-r--r-- | libcrystfel/src/reflist.h | 8 |
3 files changed, 19 insertions, 6 deletions
diff --git a/doc/reference/libcrystfel/CrystFEL-sections.txt b/doc/reference/libcrystfel/CrystFEL-sections.txt index 7422f5ca..014b4db4 100644 --- a/doc/reference/libcrystfel/CrystFEL-sections.txt +++ b/doc/reference/libcrystfel/CrystFEL-sections.txt @@ -31,6 +31,8 @@ get_refinable get_redundancy get_esd_intensity get_phase +get_mean_bg +get_peak get_temp1 get_temp2 <SUBSECTION> @@ -44,6 +46,8 @@ set_refinable set_redundancy set_esd_intensity set_phase +set_mean_bg +set_peak set_symmetric_indices set_temp1 set_temp2 @@ -58,6 +62,7 @@ unlock_reflection <SECTION> <FILE>reflist-utils</FILE> write_reflist +write_reflist_2 write_reflections_to_file read_reflections read_reflections_from_file @@ -188,12 +193,20 @@ histogram_init histogram_free histogram_add_value histogram_show +histogram_get_data +histogram_get_max +histogram_get_min +histogram_get_num_bins +histogram_set_max +histogram_set_min +histogram_set_num_bins </SECTION> <SECTION> <FILE>image</FILE> image ImageFeatureList +SpectrumType image_add_feature image_feature_closest image_feature_count diff --git a/libcrystfel/src/reflist.c b/libcrystfel/src/reflist.c index 7bc98788..be1663ef 100644 --- a/libcrystfel/src/reflist.c +++ b/libcrystfel/src/reflist.c @@ -3,11 +3,11 @@ * * Fast reflection/peak list * - * Copyright © 2012-2013 Deutsches Elektronen-Synchrotron DESY, + * Copyright © 2012-2014 Deutsches Elektronen-Synchrotron DESY, * a research centre of the Helmholtz Association. * * Authors: - * 2011-2013 Thomas White <taw@physics.org> + * 2011-2014 Thomas White <taw@physics.org> * * This file is part of CrystFEL. * diff --git a/libcrystfel/src/reflist.h b/libcrystfel/src/reflist.h index 61cac9d5..d5a62faa 100644 --- a/libcrystfel/src/reflist.h +++ b/libcrystfel/src/reflist.h @@ -3,11 +3,11 @@ * * Fast reflection/peak list * - * Copyright © 2012-2013 Deutsches Elektronen-Synchrotron DESY, + * Copyright © 2012-2014 Deutsches Elektronen-Synchrotron DESY, * a research centre of the Helmholtz Association. * * Authors: - * 2011-2013 Thomas White <taw@physics.org> + * 2011-2014 Thomas White <taw@physics.org> * * This file is part of CrystFEL. * @@ -113,8 +113,8 @@ extern void set_temp1(Reflection *refl, double temp); extern void set_temp2(Reflection *refl, double temp); extern void set_esd_intensity(Reflection *refl, double esd); extern void set_phase(Reflection *refl, double phase); -extern void set_peak(Reflection *refl, double pk); -extern void set_mean_bg(Reflection *refl, double bg); +extern void set_peak(Reflection *refl, double peak); +extern void set_mean_bg(Reflection *refl, double mean_bg); extern void set_symmetric_indices(Reflection *refl, signed int hs, signed int ks, signed int ls); |