histogram.hpp 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. - [boost/histogram/display.hpp][5]
  17. [1]: histogram/reference.html#header.boost.histogram.ostream_hpp
  18. [2]: histogram/reference.html#header.boost.histogram.axis.ostream_hpp
  19. [3]: histogram/reference.html#header.boost.histogram.accumulators.ostream_hpp
  20. [4]: histogram/reference.html#header.boost.histogram.serialization_hpp
  21. [5]: histogram/reference.html#header.boost.histogram.display_hpp
  22. */
  23. #include <boost/histogram/accumulators.hpp>
  24. #include <boost/histogram/algorithm.hpp>
  25. #include <boost/histogram/axis.hpp>
  26. #include <boost/histogram/histogram.hpp>
  27. #include <boost/histogram/indexed.hpp>
  28. #include <boost/histogram/literals.hpp>
  29. #include <boost/histogram/make_histogram.hpp>
  30. #include <boost/histogram/make_profile.hpp>
  31. #include <boost/histogram/storage_adaptor.hpp>
  32. #include <boost/histogram/unlimited_storage.hpp>
  33. #endif