You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// First point has to be at 0, last point has to be at 2PI
97
97
if ((i == 0 && x != 0.f) || (i == mDeadPhiRegions->GetN() - 1 && x != o2::constants::math::TwoPI)) {
98
-
LOG(fatal) << "Dead phi regions graph for layer " << name << " has invalid x value " << x << " at point " << i << ", first point should be 0 and last point should be 2PI";
98
+
LOG(fatal) << "Dead phi regions graph for layer " << mName << " has invalid x value " << x << " at point " << i << ", first point should be 0 and last point should be 2PI";
99
99
}
100
100
LOG(debug) << "Point " << i << ": (" << x << ", " << y << ")";
101
101
if (x < 0 || x > o2::constants::math::TwoPI) {
102
-
LOG(fatal) << "Dead phi regions graph for layer " << name << " has invalid x value " << x << " at point " << i;
102
+
LOG(fatal) << "Dead phi regions graph for layer " << mName << " has invalid x value " << x << " at point " << i;
103
103
}
104
104
if (y != 0.f && y != 2.f) {
105
-
LOG(fatal) << "Dead phi regions graph for layer " << name << " has invalid y value " << y << " at point " << i << ", should be 0 or 2";
105
+
LOG(fatal) << "Dead phi regions graph for layer " << mName << " has invalid y value " << y << " at point " << i << ", should be 0 or 2";
106
106
}
107
107
}
108
108
} else {
109
-
LOG(info) << "Cleared dead phi regions for layer " << name;
109
+
LOG(info) << "Cleared dead phi regions for layer " << mName;
0 commit comments