123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- // Copyright 2015-2018 Hans Dembinski
- //
- // Distributed under the Boost Software License, version 1.0.
- // (See accompanying file LICENSE_1_0.txt
- // or copy at http://www.boost.org/LICENSE_1_0.txt)
- #ifndef BOOST_HISTOGRAM_ACCUMULATORS_WEIGHTED_SUM_HPP
- #define BOOST_HISTOGRAM_ACCUMULATORS_WEIGHTED_SUM_HPP
- #include <boost/core/nvp.hpp>
- #include <boost/histogram/detail/square.hpp>
- #include <boost/histogram/fwd.hpp> // for weighted_sum<>
- #include <type_traits>
- namespace boost {
- namespace histogram {
- namespace accumulators {
- /// Holds sum of weights and its variance estimate
- template <class ValueType>
- class weighted_sum {
- public:
- using value_type = ValueType;
- using const_reference = const value_type&;
- weighted_sum() = default;
- /// Initialize sum to value and allow implicit conversion
- weighted_sum(const_reference value) noexcept : weighted_sum(value, value) {}
- /// Allow implicit conversion from sum<T>
- template <class T>
- weighted_sum(const weighted_sum<T>& s) noexcept
- : weighted_sum(s.value(), s.variance()) {}
- /// Initialize sum to value and variance
- weighted_sum(const_reference value, const_reference variance) noexcept
- : sum_of_weights_(value), sum_of_weights_squared_(variance) {}
- /// Increment by one.
- weighted_sum& operator++() {
- ++sum_of_weights_;
- ++sum_of_weights_squared_;
- return *this;
- }
- /// Increment by weight.
- weighted_sum& operator+=(const weight_type<value_type>& w) {
- sum_of_weights_ += w.value;
- sum_of_weights_squared_ += detail::square(w.value);
- return *this;
- }
- /// Added another weighted sum.
- weighted_sum& operator+=(const weighted_sum& rhs) {
- sum_of_weights_ += rhs.sum_of_weights_;
- sum_of_weights_squared_ += rhs.sum_of_weights_squared_;
- return *this;
- }
- /// Divide by another weighted sum.
- weighted_sum& operator/=(const weighted_sum& rhs) {
- const auto v = sum_of_weights_;
- const auto w = sum_of_weights_squared_;
- const auto rv = rhs.sum_of_weights_;
- const auto rw = rhs.sum_of_weights_squared_;
- sum_of_weights_ /= rv;
- // error propagation for independent a, b:
- // c = a / b: var(c) = (var(a)/a^2 + var(b)/b^2) c^2
- using detail::square;
- sum_of_weights_squared_ = (w / square(v) + rw / square(rv)) * square(sum_of_weights_);
- return *this;
- }
- /// Scale by value.
- weighted_sum& operator*=(const_reference x) {
- sum_of_weights_ *= x;
- sum_of_weights_squared_ *= x * x;
- return *this;
- }
- bool operator==(const weighted_sum& rhs) const noexcept {
- return sum_of_weights_ == rhs.sum_of_weights_ &&
- sum_of_weights_squared_ == rhs.sum_of_weights_squared_;
- }
- bool operator!=(const weighted_sum& rhs) const noexcept { return !operator==(rhs); }
- /// Return value of the sum.
- const_reference value() const noexcept { return sum_of_weights_; }
- /// Return estimated variance of the sum.
- const_reference variance() const noexcept { return sum_of_weights_squared_; }
- // lossy conversion must be explicit
- explicit operator const_reference() const { return sum_of_weights_; }
- template <class Archive>
- void serialize(Archive& ar, unsigned /* version */) {
- ar& make_nvp("sum_of_weights", sum_of_weights_);
- ar& make_nvp("sum_of_weights_squared", sum_of_weights_squared_);
- }
- private:
- value_type sum_of_weights_{};
- value_type sum_of_weights_squared_{};
- };
- } // namespace accumulators
- } // namespace histogram
- } // namespace boost
- #ifndef BOOST_HISTOGRAM_DOXYGEN_INVOKED
- namespace std {
- template <class T, class U>
- struct common_type<boost::histogram::accumulators::weighted_sum<T>,
- boost::histogram::accumulators::weighted_sum<U>> {
- using type = boost::histogram::accumulators::weighted_sum<common_type_t<T, U>>;
- };
- template <class T, class U>
- struct common_type<boost::histogram::accumulators::weighted_sum<T>, U> {
- using type = boost::histogram::accumulators::weighted_sum<common_type_t<T, U>>;
- };
- template <class T, class U>
- struct common_type<T, boost::histogram::accumulators::weighted_sum<U>> {
- using type = boost::histogram::accumulators::weighted_sum<common_type_t<T, U>>;
- };
- } // namespace std
- #endif
- #endif
|