I see very strange behaviour for a histogram: when scaling with 1.0 via the function Scale(), the errors of all bins are set to 0.0 afterwards. I attached a little script I wrote and the corresponding input root file. The corresponding output in my case is:
Integral is 92680.95672607422
Bin content 5539.64990234375, bin error 74.42882440522455
Scale histogram with 1.0
Integral is 92680.95672607422
Bin content 5539.64990234375, bin error 0.0
This is caused by the fact that the entries of the histograms are zero. I don’t know why, since it is coming from a file, maybe we should remove this check in TH1::Sumw2 that is used to fill the histogram bin errors correctly.
As a workaround just do before scaling:
Hi,
ok thanks for the comment. The workaround works I could also find why the histogram has zero entries: the histogram was filled with the function “AddBinContent()”. In contrast to “SetBinContent()” it seems the function is not updating the bin entries. I don’t know if this is the intended behaviour.
Philipp
Hi, AddBinContent is more an internal function of the histogram, which is more efficient. If using that function you would need to set the entries by hand, calling SetEntries