mirror of
https://github.com/boostorg/histogram.git
synced 2025-05-09 23:04:07 +00:00
32 lines
1.0 KiB
C++
32 lines
1.0 KiB
C++
// Copyright 2015-2016 Hans Dembinski
|
|
//
|
|
// Distributed under the Boost Software License, Version 1.0.
|
|
// (See accompanying file LICENSE_1_0.txt
|
|
// or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
#ifndef BOOST_HISTOGRAM_HPP_
|
|
#define BOOST_HISTOGRAM_HPP_
|
|
|
|
#include <boost/histogram/axis.hpp>
|
|
#include <boost/histogram/utility.hpp>
|
|
#include <boost/histogram/static_storage.hpp>
|
|
#include <boost/histogram/dynamic_storage.hpp>
|
|
#include <boost/histogram/static_histogram.hpp>
|
|
#include <boost/histogram/dynamic_histogram.hpp>
|
|
|
|
/**
|
|
* \file boost/histogram.hpp
|
|
\brief Includes all the non-experimental headers of the Boost.histogram library.
|
|
|
|
The library consists of a single \ref boost::histogram::histogram "histogram"
|
|
and several axis types which are stored in a
|
|
boost::variant called \ref boost::histogram::axis_type "axis_type"
|
|
The axis types are created and passed to the constructor of the
|
|
histogram to define its binning scheme.
|
|
All following types are embedded in the
|
|
\ref boost::histogram namespace, which is omitted for brevity.
|
|
|
|
*/
|
|
|
|
#endif
|