histogram.hpp 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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/accumulators/ostream.hpp
  13. - boost/histogram/axis/ostream.hpp
  14. - boost/histogram/ostream.hpp
  15. - boost/histogram/serialization.hpp
  16. */
  17. #include <boost/histogram/accumulators/mean.hpp>
  18. #include <boost/histogram/accumulators/sum.hpp>
  19. #include <boost/histogram/accumulators/weighted_mean.hpp>
  20. #include <boost/histogram/accumulators/weighted_sum.hpp>
  21. #include <boost/histogram/algorithm/project.hpp>
  22. #include <boost/histogram/algorithm/reduce.hpp>
  23. #include <boost/histogram/algorithm/sum.hpp>
  24. #include <boost/histogram/axis.hpp>
  25. #include <boost/histogram/histogram.hpp>
  26. #include <boost/histogram/indexed.hpp>
  27. #include <boost/histogram/literals.hpp>
  28. #include <boost/histogram/make_histogram.hpp>
  29. #include <boost/histogram/make_profile.hpp>
  30. #include <boost/histogram/storage_adaptor.hpp>
  31. #include <boost/histogram/unlimited_storage.hpp>
  32. #endif