Skip to content

Commit 229233c

Browse files
committed
fixing MegaLinter
1 parent 4881473 commit 229233c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

PWGCF/Femto3D/Core/femto3dPairTask.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,8 +225,9 @@ class FemtoPair
225225
if (_first != NULL && _second != NULL) {
226226
float dphi = _first->phiStar(_magfield1, radius) - _second->phiStar(_magfield2, radius);
227227
return std::fabs(dphi) > o2::constants::math::PI ? (1.0 - 2.0 * o2::constants::math::PI / std::fabs(dphi)) * dphi : dphi;
228-
} else
228+
} else {
229229
return 1000;
230+
}
230231
}
231232
float GetAvgPhiStarDiff() const;
232233

0 commit comments

Comments
 (0)