Skip to content

Commit

Permalink
Update warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Henry Wallace committed Nov 5, 2024
1 parent 11bcf92 commit 9e60ce9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mcmc/MCMCProcessor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3158,7 +3158,7 @@ void MCMCProcessor::ParameterEvolution(const std::vector<std::string>& Names,
// ROOT won't overwrite gifs so we need to delete the file if it's there already
int ret = system(fmt::format("rm {}.gif",Names[k]).c_str());
if (ret != 0){
MACH3LOG_WARN("Error: system call to copy file failed with code {}", ret);
MACH3LOG_WARN("Error: system call to delete {} failed with code {}", Names[k], ret);
}
// This holds the posterior density
const double maxi = Chain->GetMaximum(BranchNames[ParamNo]);
Expand Down

0 comments on commit 9e60ce9

Please sign in to comment.