Skip to content

Commit 93cd6e9

Browse files
Vojtech MachacekVojtech Machacek
authored andcommitted
Fix linter issues
1 parent 715624a commit 93cd6e9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

PWGCF/Flow/Tasks/flowMc.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,7 @@ struct FlowMc {
479479
template <typename TTrack>
480480
bool trackSelected(TTrack track)
481481
{
482-
if (cfgCutDCAzPtDepEnabled && (fabs(track.dcaZ()) > fPtDepDCAz->Eval(track.pt()))) {
482+
if (cfgCutDCAzPtDepEnabled && (std::fabs(track.dcaZ()) > fPtDepDCAz->Eval(track.pt()))) {
483483
return false;
484484
}
485485
return myTrackSel.IsSelected(track);

0 commit comments

Comments
 (0)