summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/histogram/test/utility_histogram.hpp
blob: 16839fc44ba911576277772d4a2d6b754f5dfebc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
// Copyright 2018 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_TEST_UTILITY_HISTOGRAM_HPP
#define BOOST_HISTOGRAM_TEST_UTILITY_HISTOGRAM_HPP

#include <boost/histogram/axis/category.hpp>
#include <boost/histogram/axis/integer.hpp>
#include <boost/histogram/axis/regular.hpp>
#include <boost/histogram/axis/variable.hpp>
#include <boost/histogram/axis/variant.hpp>
#include <boost/histogram/make_histogram.hpp>
#include <boost/mp11/algorithm.hpp>
#include <type_traits>
#include <vector>

namespace boost {
namespace histogram {

template <class... Ts>
auto make_axis_vector(const Ts&... ts) {
  // make sure the variant is never trivial (contains only one type)
  using R = axis::regular<double, boost::use_default, axis::null_type>;
  using I = axis::integer<int, axis::null_type, axis::option::none_t>;
  using V = axis::variable<double, axis::null_type>;
  using C = axis::category<int, axis::null_type>;
  using Var = boost::mp11::mp_unique<axis::variant<Ts..., R, I, V, C>>;
  return std::vector<Var>({Var(ts)...});
}

using static_tag = std::false_type;
using dynamic_tag = std::true_type;

template <class... Axes>
auto make(static_tag, const Axes&... axes) {
  return make_histogram(axes...);
}

template <class S, class... Axes>
auto make_s(static_tag, S&& s, const Axes&... axes) {
  return make_histogram_with(s, axes...);
}

template <class... Axes>
auto make(dynamic_tag, const Axes&... axes) {
  return make_histogram(make_axis_vector(axes...));
}

template <class S, class... Axes>
auto make_s(dynamic_tag, S&& s, const Axes&... axes) {
  return make_histogram_with(s, make_axis_vector(axes...));
}

} // namespace histogram
} // namespace boost

#endif