Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2024-11-15 09:34:13

0001 // Copyright 2015-2018 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_HPP
0008 #define BOOST_HISTOGRAM_HPP
0009 
0010 /**
0011   \file boost/histogram.hpp
0012   Includes all standard headers of the Boost.Histogram library.
0013 
0014   Extra headers not automatically included are:
0015     - [boost/histogram/ostream.hpp][1]
0016     - [boost/histogram/axis/ostream.hpp][2]
0017     - [boost/histogram/accumulators/ostream.hpp][3]
0018     - [boost/histogram/serialization.hpp][4]
0019 
0020   [1]: histogram/reference.html#header.boost.histogram.ostream_hpp
0021   [2]: histogram/reference.html#header.boost.histogram.axis.ostream_hpp
0022   [3]: histogram/reference.html#header.boost.histogram.accumulators.ostream_hpp
0023   [4]: histogram/reference.html#header.boost.histogram.serialization_hpp
0024 */
0025 
0026 #include <boost/histogram/accumulators.hpp>
0027 #include <boost/histogram/algorithm.hpp>
0028 #include <boost/histogram/axis.hpp>
0029 #include <boost/histogram/histogram.hpp>
0030 #include <boost/histogram/indexed.hpp>
0031 #include <boost/histogram/literals.hpp>
0032 #include <boost/histogram/make_histogram.hpp>
0033 #include <boost/histogram/make_profile.hpp>
0034 #include <boost/histogram/storage_adaptor.hpp>
0035 #include <boost/histogram/unlimited_storage.hpp>
0036 
0037 #endif