• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
7 //[ guide_make_static_histogram
8 
9 #include <boost/histogram.hpp>
10 #include <cassert>
11 
main()12 int main() {
13   using namespace boost::histogram;
14 
15   // create a 1d-histogram in default configuration which
16   // covers the real line from -1 to 1 in 100 bins
17   auto h = make_histogram(axis::regular<>(100, -1.0, 1.0));
18 
19   // rank is the number of axes
20   assert(h.rank() == 1);
21 }
22 
23 //]
24