Go to the documentation of this file.
14 template <
class TC,
class TO,
class TN,
class TW,
class TH>
99 return ::sqrt(::fabs((sx2w / sw) - _mean * _mean));
118 <<
" * MEAN VALUE = " <<
mean()
119 <<
" * R . M . S = " <<
rms()
125 <<
" * ENTRIES[0] = "
133 <<
" * ENTRIES[N/2] = "
135 <<
" * HEIGHT[N/2] = "
137 <<
" * ERROR[N/2] = "
141 <<
" * ENTRIES[N-1] = "
143 <<
" * HEIGHT[N-1] = "
145 <<
" * ERROR[N-1] = "
150 b1(
const std::string& a_title,
bn_t aXnumber,TC aXmin,TC aXmax) {
152 std::vector<bn_t> nbins;
153 nbins.push_back(aXnumber);
154 std::vector<TC> mins;
155 mins.push_back(aXmin);
156 std::vector<TC> maxs;
157 maxs.push_back(aXmax);
160 b1(
const std::string& a_title,
const std::vector<TC>& a_edges) {
162 std::vector< std::vector<TC> > edges(1);
171 if(&a_from==
this)
return *
this;
177 std::vector<bn_t> nbins;
178 nbins.push_back(aXnumber);
179 std::vector<TC> mins;
180 mins.push_back(aXmin);
181 std::vector<TC> maxs;
182 maxs.push_back(aXmax);
186 std::vector< std::vector<TC> > edges(1);
194 if(!
parent::m_axes[0].in_range_to_absolute_index(aI,ibin)) {a_offset=0;
return false;}