| 5 | namespace bh = boost::histogram; |
| 6 | |
| 7 | int main() { |
| 8 | // create a 1d-histogram for dice throws with integer values from 1 to 6 |
| 9 | auto h = bh::make_static_histogram( |
| 10 | bh::axis::integer<>(1, 7, "eyes", bh::axis::uoflow_type::off)); |
| 11 | |
| 12 | // do something with h |
| 13 | } |
| 14 | |
| 15 | //] |
nothing calls this directly
no test coverage detected