diff options
author | Thomas White <taw@physics.org> | 2014-02-17 16:02:52 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2014-02-17 16:03:31 +0100 |
commit | 86a7e6293671fc0f384b5f9a92c93b79688508b8 (patch) | |
tree | 0799608bb7adffa5dc50064c23a5f067d674d712 /libcrystfel/src/histogram.c | |
parent | 653cac3b7dd684a1b913b0007417762653d25a5a (diff) |
Add histogram_{set,get}_{min,max}
Diffstat (limited to 'libcrystfel/src/histogram.c')
-rw-r--r-- | libcrystfel/src/histogram.c | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/libcrystfel/src/histogram.c b/libcrystfel/src/histogram.c index bd925aea..872c5dca 100644 --- a/libcrystfel/src/histogram.c +++ b/libcrystfel/src/histogram.c @@ -244,3 +244,33 @@ void histogram_show(Histogram *hi) free(bins); } + + +double histogram_get_min(Histogram *hi) +{ + return hi->min; +} + + +double histogram_get_max(Histogram *hi) +{ + return hi->max; +} + + +void histogram_set_min(Histogram *hi, double min) +{ + hi->min = min; +} + + +void histogram_set_max(Histogram *hi, double max) +{ + hi->max = max; +} + + +void histogram_set_num_bins(Histogram *hi, int n) +{ + hi->n_bins = n; +} |