Skip to content

Commit

Permalink
Merge pull request #14999 from gartung/Validation-RecoParticleFlow-fi…
Browse files Browse the repository at this point in the history
…x-indent-not-guard-warn

Validation/RecoParticleFlow : gcc 6.0 misleading-indentation warning flags potential bug; with bug fix
  • Loading branch information
cmsbuild committed Jun 29, 2016
2 parents ee2345c + 8c2c839 commit c311733
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Validation/RecoParticleFlow/bin/include/Plot1D.h
Expand Up @@ -89,8 +89,8 @@ void PlotCompareUtility::makePlots<Plot1D>(HistoData *HD) {

// place the test results as the title
TString title = HD->getName();
if (ksThreshold > 0) title += " KS Score = "; title += HD->getKSScore();
if (chi2Threshold > 0) title += " Chi^2 Score = "; title += HD->getChi2Score();
if (ksThreshold > 0) {title += " KS Score = "; title += HD->getKSScore();}
if (chi2Threshold > 0) { title += " Chi^2 Score = "; title += HD->getChi2Score();}

// the canvas is rescaled during gif conversion, so add padding to Canvas dimensions
int plotsCanvasWidth = plotsWidth + 4;
Expand Down

0 comments on commit c311733

Please sign in to comment.