template<int DIMENSIONS>
struct ROOT::Experimental::Hist::RCoordArray< DIMENSIONS >
Definition at line 26 of file RHistUtils.hxx.
|
| RCoordArray ()=default |
| Default construction. More...
|
|
template<class... ELEMENTS, class = typename std::enable_if<sizeof...(ELEMENTS) + 1 == DIMENSIONS>::type> |
| RCoordArray (double x, ELEMENTS...el) |
| Construction with one double per DIMENSION . More...
|
|
| RCoordArray (double(&arr)[DIMENSIONS]) |
| Construction from a C-style array. More...
|
|
template<class T , class... ELEMENTS, class = typename std::enable_if<sizeof...(ELEMENTS) + 1 != DIMENSIONS>::type> |
| RCoordArray (T, ELEMENTS...) |
| Fallback constructor, invoked if the one above fails because of the wrong number of arguments / coordinates. More...
|
|