Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026 #include "Histogram.H"
00027 #include <OpenFOAM/ListOps.H>
00028
00029
00030
00031
00032 template<class List>
00033 void Foam::Histogram<List>::count(const List& bins, const List& l)
00034 {
00035 if (bins.size() < 2)
00036 {
00037 FatalErrorIn("Histogram<List>::count(const List&, const List&)")
00038 << "Should have at least two values in bins. Now:" << bins
00039 << exit(FatalError);
00040 }
00041
00042 counts_.setSize(bins.size()-1);
00043 counts_ = 0;
00044
00045 nLow_ = 0;
00046 nHigh_ = 0;
00047
00048 forAll(l, i)
00049 {
00050 label index = findLower(bins, l[i]);
00051
00052 if (index == -1)
00053 {
00054 nLow_++;
00055 }
00056 else if (index == bins.size()-1)
00057 {
00058 nHigh_++;
00059 }
00060 else
00061 {
00062 counts_[index]++;
00063 }
00064 }
00065 }
00066
00067
00068
00069
00070 template<class List>
00071 Foam::Histogram<List>::Histogram(const List& bins, const List& l)
00072 {
00073 count(bins, l);
00074 }
00075
00076
00077 template<class List>
00078 Foam::Histogram<List>::Histogram
00079 (
00080 const typename List::const_reference min,
00081 const typename List::const_reference max,
00082 const label nBins,
00083 const List& l
00084 )
00085 {
00086 List bins(nBins+1);
00087
00088 typename List::value_type span = (max-min) / nBins;
00089
00090 bins[0] = min;
00091
00092 for (label i = 1; i < nBins; i++)
00093 {
00094 bins[i] = bins[i-1] + span;
00095 }
00096
00097
00098 bins[nBins] = max;
00099
00100 count(bins, l);
00101 }
00102
00103
00104