Dear All
i have a histogram and i want to remove error bar from it . i Try diiferent ways but all useless. Plz could someone help me.
Dear All
i have a histogram and i want to remove error bar from it . i Try diiferent ways but all useless. Plz could someone help me.
Try: z_pt_ee->Draw("HIST C");
or: z_pt_ee->Draw("HIST L");
But maybe you are looking for something like this:
TH1 *z_pt_ee_5 = z_pt_ee->Rebin(5, "z_pt_ee_5"); // merges 5 bins into 1 bin
z_pt_ee_5->Draw("HIST");