Skip to content

Commit

Permalink
Merge pull request #10055 from tlampen/print_DMR_RMS_error_for76X
Browse files Browse the repository at this point in the history
Print dmr rms error for76 x
  • Loading branch information
cmsbuild committed Jul 15, 2015
2 parents 7ab8cd2 + 64a4f03 commit 383a7ba
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -1375,7 +1375,7 @@ setDMRHistStyleAndLegend(TH1F* h, PlotAlignmentValidation::DMRPlotInfo& plotinfo
if (useFit_) {
legend << " #mu = " << fitResults.first << " #mum, #sigma = " << fitResults.second << " #mum";
} else {
legend << " #mu = " << h->GetMean(1)*10000 << " #mum, rms = " << h->GetRMS(1)*10000 << " #mum";
legend << " #mu = " << h->GetMean(1)*10000 << " #mum, rms = " << h->GetRMS(1)*10000 << " #pm " << h->GetRMSError(1)*10000 << " #mum, " << (int) h->GetEntries() << " modules" ;
}
} else if (plotinfo.variable == "rmsX" || plotinfo.variable == "rmsY") {
legend << " #mu = " << h->GetMean(1)*10000 << " #mum, rms = " << h->GetRMS(1)*10000 << " #mum";
Expand Down

0 comments on commit 383a7ba

Please sign in to comment.