Skip to content
Snippets Groups Projects
Commit cdcdb5ce authored by Lubynets's avatar Lubynets
Browse files

use correct value along x-axis

parent 29c6d97e
No related branches found
No related tags found
1 merge request!3use correct value along x-axis
Pipeline #7267 failed
......@@ -26,7 +26,7 @@ void BordersFinder::FindBorders() {
double *histIntegral = histo_.GetIntegral();
double x[n];
for (int i = 0; i < n; ++i) {
x[i] = axis->GetBinCenter(i + 1);
x[i] = axis->GetBinLowEdge(i + 1);
}
TGraph intVsXGraph(n, x, histIntegral);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment