Hello,everyone!I want to remove the data of the first bin in the histogram, while keeping the other bins in the histogram consistent with the original, what should I do?
h->SetBinContent(1,0.);
Afterwards, I guess you also need: h->ResetStats();
1 Like
Thank you very much!