]> git.mxchange.org Git - simgear.git/blob - simgear/structure/SGSmplhist.hxx
7d9f05d3c6e3f7290dd56b533196053f703f38ee
[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 <ostream>
29 #include <fstream>
30 #include "SGSmplstat.hxx"
31
32 extern const int SampleHistogramMinimum;
33 extern const int SampleHistogramMaximum;
34
35 class SampleHistogram:public SampleStatistic
36 {
37 protected:
38   short howManyBuckets;
39   int *bucketCount;
40   double *bucketLimit;
41
42 public:
43
44     SampleHistogram (double low, double hi, double bucketWidth = -1.0);
45
46    ~SampleHistogram ();
47
48   virtual void reset ();
49   virtual void operator += (double);
50
51   int similarSamples (double);
52
53   int buckets ();
54
55   double bucketThreshold (int i);
56   int inBucket (int i);
57   void printBuckets (std::ostream &);
58
59 };
60
61
62 inline int SampleHistogram::buckets ()
63 {
64   return (howManyBuckets);
65 };
66
67 inline double SampleHistogram::bucketThreshold (int i)
68 {
69   if (i < 0 || i >= howManyBuckets)
70     error ("invalid bucket access");
71   return (bucketLimit[i]);
72 }
73
74 inline int SampleHistogram::inBucket (int i)
75 {
76   if (i < 0 || i >= howManyBuckets)
77     error ("invalid bucket access");
78   return (bucketCount[i]);
79 }
80
81 #endif