Public Methods | |
value_pool (const double *vec, size_t N) | |
bool | get_val (double &val) |
Private Attributes | |
size_t | ix_ |
const double* | vec_ |
const size_t | N_ |
Definition at line 59 of file histogram.h.
|
Definition at line 67 of file histogram.h. |
|
Definition at line 72 of file histogram.h. 00073 { 00074 bool rslt = false; 00075 val = 0.0; 00076 if (ix_ < N_) { 00077 rslt = true; 00078 val = vec_[ ix_ ]; 00079 ix_++; 00080 } 00081 return rslt; 00082 } // get_val |
|
Definition at line 64 of file histogram.h. |
|
Definition at line 62 of file histogram.h. |
|
Definition at line 63 of file histogram.h. |