@@ -315,7 +315,7 @@ struct v0selector {
315315 const auto & negTrack = V0.negTrack_as <FullTracksExt>();
316316
317317 bool isRejectV0{false };
318- for (const auto & prong : {posTrack, negTrack}) {
318+ for (const auto & prong : {posTrack, negTrack}) {
319319 isRejectV0 = isRejectV0 || std::fabs (prong.eta ()) > 0.9 ;
320320 isRejectV0 = isRejectV0 || prong.tpcNClsCrossedRows () < mincrossedrows;
321321 isRejectV0 = isRejectV0 || prong.tpcChi2NCl () > maxchi2tpc;
@@ -324,7 +324,8 @@ struct v0selector {
324324 }
325325 isRejectV0 = isRejectV0 || (posTrack.sign () * negTrack.sign () > 0 );
326326
327- if (isRejectV0) continue ;
327+ if (isRejectV0)
328+ continue ;
328329
329330 float V0dca = V0.dcaV0daughters ();
330331 float V0CosinePA = V0.v0cosPA ();
@@ -442,7 +443,7 @@ struct v0selector {
442443 const auto & bachelor = casc.bachelor_as <FullTracksExt>();
443444
444445 bool isRejectCascade{false };
445- for (const auto & prong : {posTrack, negTrack, bachelor}) {
446+ for (const auto & prong : {posTrack, negTrack, bachelor}) {
446447 isRejectCascade = isRejectCascade || std::fabs (prong.eta ()) > 0.9 ;
447448 isRejectCascade = isRejectCascade || prong.tpcNClsCrossedRows () < mincrossedrows;
448449 isRejectCascade = isRejectCascade || prong.tpcChi2NCl () > maxchi2tpc;
@@ -451,7 +452,8 @@ struct v0selector {
451452 }
452453 isRejectCascade = isRejectCascade || (posTrack.sign () * negTrack.sign () > 0 );
453454
454- if (isRejectCascade) continue ;
455+ if (isRejectCascade)
456+ continue ;
455457
456458 if (fillhisto) {
457459 registry.fill (HIST (" hCascCandidate" ), 2 );
0 commit comments