Skip to content

Commit 55e9bbf

Browse files
authored
Framework/Core/src/HistogramSpec.cxx: increase MAX_DIM (#13309)
1 parent cbf54d0 commit 55e9bbf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Framework/Core/src/HistogramSpec.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ T* generateHist(const std::string& name, const std::string& title, const std::si
7979
template <typename T, typename BASE>
8080
static std::unique_ptr<BASE> createHistFull(const HistogramSpec& histSpec)
8181
{
82-
constexpr std::size_t MAX_DIM{10};
82+
constexpr std::size_t MAX_DIM{20};
8383
const std::size_t nAxes{histSpec.config.axes.size()};
8484
if (nAxes == 0 || nAxes > MAX_DIM) {
8585
LOGF(fatal, "The histogram specification contains no (or too many) axes.");

0 commit comments

Comments
 (0)