histogram.hpp 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. // Copyright 2015-2018 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_HPP
  7. #define BOOST_HISTOGRAM_HPP
  8. /**
  9. \file boost/histogram.hpp
  10. Includes all standard headers of the Boost.Histogram library.
  11. Extra headers not automatically included are:
  12. - [boost/histogram/ostream.hpp][1]
  13. - [boost/histogram/axis/ostream.hpp][2]
  14. - [boost/histogram/accumulators/ostream.hpp][3]
  15. - [boost/histogram/serialization.hpp][4]
  16. [1]: histogram/reference.html#header.boost.histogram.ostream_hpp
  17. [2]: histogram/reference.html#header.boost.histogram.axis.ostream_hpp
  18. [3]: histogram/reference.html#header.boost.histogram.accumulators.ostream_hpp
  19. [4]: histogram/reference.html#header.boost.histogram.serialization_hpp
  20. */
  21. #include <boost/histogram/accumulators.hpp>
  22. #include <boost/histogram/algorithm.hpp>
  23. #include <boost/histogram/axis.hpp>
  24. #include <boost/histogram/histogram.hpp>
  25. #include <boost/histogram/indexed.hpp>
  26. #include <boost/histogram/literals.hpp>
  27. #include <boost/histogram/make_histogram.hpp>
  28. #include <boost/histogram/make_profile.hpp>
  29. #include <boost/histogram/storage_adaptor.hpp>
  30. #include <boost/histogram/unlimited_storage.hpp>
  31. #endif