]> git.mxchange.org Git - simgear.git/blob - simgear/structure/SGSmplhist.hxx
Merge branch 'topic/nasal' into next
[simgear.git] / simgear / structure / SGSmplhist.hxx
1 // This may look like C code, but it is really -*- C++ -*-
2 /* 
3 Copyright (C) 1988 Free Software Foundation
4     written by Dirk Grunwald (grunwald@cs.uiuc.edu)
5
6 This file is part of the GNU C++ Library.  This library is free
7 software; you can redistribute it and/or modify it under the terms of
8 the GNU Library General Public License as published by the Free
9 Software Foundation; either version 2 of the License, or (at your
10 option) any later version.  This library is distributed in the hope
11 that it will be useful, but WITHOUT ANY WARRANTY; without even the
12 implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
13 PURPOSE.  See the GNU Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public
15 License along with this library; if not, write to the Free Software
16 Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 */
18
19 #ifdef HAVE_CONFIG_H
20 #include <simgear_config.h>
21 #endif
22 #ifndef SampleHistogram_h
23 #ifdef __GNUG__
24 #pragma interface
25 #endif
26 #define SampleHistogram_h 1
27
28 #include <iosfwd>
29 #include "SGSmplstat.hxx"
30
31 extern const int SampleHistogramMinimum;
32 extern const int SampleHistogramMaximum;
33
34 class SampleHistogram:public SampleStatistic
35 {
36 protected:
37   short howManyBuckets;
38   int *bucketCount;
39   double *bucketLimit;
40
41 public:
42
43     SampleHistogram (double low, double hi, double bucketWidth = -1.0);
44
45    ~SampleHistogram ();
46
47   virtual void reset ();
48   virtual void operator += (double);
49
50   int similarSamples (double);
51
52   int buckets ();
53
54   double bucketThreshold (int i);
55   int inBucket (int i);
56   void printBuckets (std::ostream &);
57
58 };
59
60
61 inline int SampleHistogram::buckets ()
62 {
63   return (howManyBuckets);
64 };
65
66 inline double SampleHistogram::bucketThreshold (int i)
67 {
68   if (i < 0 || i >= howManyBuckets)
69     error ("invalid bucket access");
70   return (bucketLimit[i]);
71 }
72
73 inline int SampleHistogram::inBucket (int i)
74 {
75   if (i < 0 || i >= howManyBuckets)
76     error ("invalid bucket access");
77   return (bucketCount[i]);
78 }
79
80 #endif