Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-16 09:53:10

0001 // Copyright 2019 Hans Dembinski
0002 //
0003 // Distributed under the Boost Software License, Version 1.0.
0004 // (See accompanying file LICENSE_1_0.txt
0005 // or copy at http://www.boost.org/LICENSE_1_0.txt)
0006 
0007 #ifndef BOOST_HISTOGRAM_ACCUMULATORS_HPP
0008 #define BOOST_HISTOGRAM_ACCUMULATORS_HPP
0009 
0010 /**
0011   \file boost/histogram/accumulators.hpp
0012   Includes all accumulator headers of the Boost.Histogram library.
0013 
0014   Extra header not automatically included:
0015     - [boost/histogram/accumulators/ostream.hpp][1]
0016 
0017   [1]: histogram/reference.html#header.boost.histogram.accumulators.ostream_hpp
0018 */
0019 
0020 #include <boost/histogram/accumulators/count.hpp>
0021 #include <boost/histogram/accumulators/fraction.hpp>
0022 #include <boost/histogram/accumulators/mean.hpp>
0023 #include <boost/histogram/accumulators/sum.hpp>
0024 #include <boost/histogram/accumulators/weighted_mean.hpp>
0025 #include <boost/histogram/accumulators/weighted_sum.hpp>
0026 
0027 #endif