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 7 #ifndef BOOST_HISTOGRAM_ACCUMULATORS_HPP 8 #define BOOST_HISTOGRAM_ACCUMULATORS_HPP 9 10 /** 11 \file boost/histogram/accumulators.hpp 12 Includes all accumulator headers of the Boost.Histogram library. 13 14 Extra header not automatically included: 15 - [boost/histogram/accumulators/ostream.hpp][1] 16 17 [1]: histogram/reference.html#header.boost.histogram.accumulators.ostream_hpp 18 */ 19 20 #include <boost/histogram/accumulators/count.hpp> 21 #include <boost/histogram/accumulators/mean.hpp> 22 #include <boost/histogram/accumulators/sum.hpp> 23 #include <boost/histogram/accumulators/thread_safe.hpp> 24 #include <boost/histogram/accumulators/weighted_mean.hpp> 25 #include <boost/histogram/accumulators/weighted_sum.hpp> 26 27 #endif 28