Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Modules/TPC/src/GenericHistogramCheck.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,8 @@ Quality GenericHistogramCheck::check(std::map<std::string, std::shared_ptr<Monit
mStdevX = h->GetStdDev(1);
} else if (mHistDimension == 1) {
ILOG(Error, Support) << "a 1D Histogram was given, but the X-axis is not assigned to be checked. No Check was performed." << ENDM;
mMeanX = 999999999; // set it to some number so that the math does not break
mStdevX = 999999999;
mMeanX = 1e9f; // set it to some number so that the math does not break
mStdevX = 1e9f;
}
if (mHistDimension == 2) {
if (mCheckYAxis) {
Expand Down
Loading