accumulators.hpp 845 B

1234567891011121314151617181920212223242526
  1. // Copyright 2019 Hans Dembinski
  2. //
  3. // Distributed under the Boost Software License, Version 1.0.
  4. // (See accompanying file LICENSE_1_0.txt
  5. // or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. #ifndef BOOST_HISTOGRAM_ACCUMULATORS_HPP
  7. #define BOOST_HISTOGRAM_ACCUMULATORS_HPP
  8. /**
  9. \file boost/histogram/accumulators.hpp
  10. Includes all accumulator headers of the Boost.Histogram library.
  11. Extra header not automatically included:
  12. - [boost/histogram/accumulators/ostream.hpp][1]
  13. [1]: histogram/reference.html#header.boost.histogram.accumulators.ostream_hpp
  14. */
  15. #include <boost/histogram/accumulators/mean.hpp>
  16. #include <boost/histogram/accumulators/sum.hpp>
  17. #include <boost/histogram/accumulators/thread_safe.hpp>
  18. #include <boost/histogram/accumulators/weighted_mean.hpp>
  19. #include <boost/histogram/accumulators/weighted_sum.hpp>
  20. #endif