Update all #include directives to the currently preferred style.
[pspp-builds.git] / src / output / charts / plot-hist.h
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 2004, 2009, 2011 Free Software Foundation, Inc.
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation, either version 3 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>. */
16
17 #ifndef OUTPUT_PLOT_HIST_H
18 #define OUTPUT_PLOT_HIST_H
19
20 #include <gsl/gsl_histogram.h>
21 #include <stdbool.h>
22
23 #include "output/chart-item.h"
24
25 struct histogram_chart
26   {
27     struct chart_item chart_item;
28     gsl_histogram *gsl_hist;
29     double n;
30     double mean;
31     double stddev;
32     bool show_normal;
33   };
34
35 /* Creates and returns a new chart that depicts a histogram of
36    the data in HIST with the given LABEL.  Labels the histogram
37    with each of N, MEAN, and STDDEV that is not SYSMIS.  If all
38    three are not SYSMIS and SHOW_NORMAL is true, also draws a
39    normal curve on the histogram. */
40 struct chart_item *histogram_chart_create (const gsl_histogram *,
41                                            const char *label, double n,
42                                            double mean, double stddev,
43                                            bool show_normal);
44 \f
45 /* This boilerplate for histogram_chart, a subclass of chart_item, was
46    autogenerated by mk-class-boilerplate. */
47
48 #include <assert.h>
49 #include "libpspp/cast.h"
50
51 extern const struct chart_item_class histogram_chart_class;
52
53 /* Returns true if SUPER is a histogram_chart, otherwise false. */
54 static inline bool
55 is_histogram_chart (const struct chart_item *super)
56 {
57   return super->class == &histogram_chart_class;
58 }
59
60 /* Returns SUPER converted to histogram_chart.  SUPER must be a histogram_chart, as
61    reported by is_histogram_chart. */
62 static inline struct histogram_chart *
63 to_histogram_chart (const struct chart_item *super)
64 {
65   assert (is_histogram_chart (super));
66   return UP_CAST (super, struct histogram_chart, chart_item);
67 }
68
69 /* Returns INSTANCE converted to chart_item. */
70 static inline struct chart_item *
71 histogram_chart_super (const struct histogram_chart *instance)
72 {
73   return CONST_CAST (struct chart_item *, &instance->chart_item);
74 }
75
76 /* Increments INSTANCE's reference count and returns INSTANCE. */
77 static inline struct histogram_chart *
78 histogram_chart_ref (const struct histogram_chart *instance)
79 {
80   return to_histogram_chart (chart_item_ref (&instance->chart_item));
81 }
82
83 /* Decrements INSTANCE's reference count, then destroys INSTANCE if
84    the reference count is now zero. */
85 static inline void
86 histogram_chart_unref (struct histogram_chart *instance)
87 {
88   chart_item_unref (&instance->chart_item);
89 }
90
91 /* Returns true if INSTANCE's reference count is greater than 1,
92    false otherwise. */
93 static inline bool
94 histogram_chart_is_shared (const struct histogram_chart *instance)
95 {
96   return chart_item_is_shared (&instance->chart_item);
97 }
98
99 static inline void
100 histogram_chart_submit (struct histogram_chart *instance)
101 {
102   chart_item_submit (&instance->chart_item);
103 }
104 \f
105 #endif /* output/plot-hist.h */