Skip to content

Commit

Permalink
Framework/Core/src/HistogramSpec.cxx: increase MAX_DIM
Browse files Browse the repository at this point in the history
  • Loading branch information
dsekihat committed Jul 18, 2024
1 parent 5fc78af commit e1f54d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Framework/Core/src/HistogramSpec.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ T* generateHist(const std::string& name, const std::string& title, const std::si
template <typename T, typename BASE>
static std::unique_ptr<BASE> createHistFull(const HistogramSpec& histSpec)
{
constexpr std::size_t MAX_DIM{10};
constexpr std::size_t MAX_DIM{20};
const std::size_t nAxes{histSpec.config.axes.size()};
if (nAxes == 0 || nAxes > MAX_DIM) {
LOGF(fatal, "The histogram specification contains no (or too many) axes.");
Expand Down

0 comments on commit e1f54d0

Please sign in to comment.