Skip to content

Commit

Permalink
Issue TAxis::SetRangeUser() warnings as INFO messages instead of an e…
Browse files Browse the repository at this point in the history
…xception
  • Loading branch information
makortel committed Feb 22, 2024
1 parent db9aceb commit 1d6ae2f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions FWCore/Services/plugins/InitRootHandlers.cc
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ namespace {
}

//Contents of a message which should be reported as an INFO not a ERROR
constexpr std::array<const char* const, 9> in_message{
constexpr std::array<const char* const, 11> in_message{
{"no dictionary for class",
"already in TClassTable",
"matrix not positive definite",
Expand All @@ -175,7 +175,9 @@ namespace {
"Announced number of args different from the real number of argument passed", // Always printed if gDebug>0 - regardless of whether warning message is real.
"nbins is <=0 - set to nbins = 1",
"nbinsy is <=0 - set to nbinsy = 1",
"oneapi::tbb::global_control is limiting"}};
"oneapi::tbb::global_control is limiting",
"ufirst < fXmin, fXmin is used",
"ulast > fXmax, fXmax is used"}};

//Location generating messages which should be reported as an INFO not a ERROR
constexpr std::array<const char* const, 7> in_location{{"Fit",
Expand Down

0 comments on commit 1d6ae2f

Please sign in to comment.