Skip to content

Commit

Permalink
Update MarkovChainMC.cc
Browse files Browse the repository at this point in the history
  • Loading branch information
nucleosynthesis authored Dec 13, 2023
1 parent f201038 commit e6e574a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/MarkovChainMC.cc
Original file line number Diff line number Diff line change
Expand Up @@ -179,10 +179,10 @@ bool MarkovChainMC::run(RooWorkspace *w, RooStats::ModelConfig *mc_s, RooStats::
std::cout << "\n -- MarkovChainMC -- " << "\n";
RooRealVar *r = dynamic_cast<RooRealVar *>(mc_s->GetParametersOfInterest()->first());
if (num > 1) {
std::cout << "Limit: " << r->GetName() <<" < " << limit << " +/- " << limitErr << " @ " << cl * 100 << "% CL (" << num << " tries)" << std::endl;
std::cout << "Limit: " << r->GetName() <<" < " << limit << " +/- " << limitErr << " @ " << cl * 100 << "% credibility (" << num << " tries)" << std::endl;
if (verbose > 0 && !readChains_) std::cout << "Average chain acceptance: " << suma << std::endl;
} else {
std::cout << "Limit: " << r->GetName() <<" < " << limit << " @ " << cl * 100 << "% CL" << std::endl;
std::cout << "Limit: " << r->GetName() <<" < " << limit << " @ " << cl * 100 << "% credibility" << std::endl;
}
}
return true;
Expand Down

0 comments on commit e6e574a

Please sign in to comment.