Skip to content

Commit

Permalink
Please consider the following formatting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
alibuild committed Jan 31, 2024
1 parent 5a1793d commit 8fff473
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions PWGLF/TableProducer/lambdakzerobuilder.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -1112,24 +1112,24 @@ struct lambdakzeroPreselector {
if (((bitcheck(maskElement, bitdEdxGamma) || bitcheck(maskElement, bitdEdxK0Short)) || passdEdx) && (posRowsOK && negRowsOK) && (!forceITSOnlyMesons || (posITSonly && negITSonly)))
bitset(maskElement, bitTrackQuality);
// With baryons in decay
if ((bitcheck(maskElement, bitdEdxLambda) || passdEdx) && // logical AND with dEdx
(posRowsOK && (negRowsOK || dPreselectOnlyBaryons)) && // rows requirement
((posRowsOK || longPosITSonly) && (negRowsOK || longNegITSonly)) && // if ITS-only, check for min length
if ((bitcheck(maskElement, bitdEdxLambda) || passdEdx) && // logical AND with dEdx
(posRowsOK && (negRowsOK || dPreselectOnlyBaryons)) && // rows requirement
((posRowsOK || longPosITSonly) && (negRowsOK || longNegITSonly)) && // if ITS-only, check for min length
(!forceITSOnlyMesons || negITSonly))
bitset(maskElement, bitTrackQuality);
if ((bitcheck(maskElement, bitdEdxAntiLambda) || passdEdx) && // logical AND with dEdx
(negRowsOK && (posRowsOK || dPreselectOnlyBaryons)) && // rows requirement
((posRowsOK || longPosITSonly) && (negRowsOK || longNegITSonly)) && // if ITS-only, check for min length
if ((bitcheck(maskElement, bitdEdxAntiLambda) || passdEdx) && // logical AND with dEdx
(negRowsOK && (posRowsOK || dPreselectOnlyBaryons)) && // rows requirement
((posRowsOK || longPosITSonly) && (negRowsOK || longNegITSonly)) && // if ITS-only, check for min length
(!forceITSOnlyMesons || posITSonly))
bitset(maskElement, bitTrackQuality);
if ((bitcheck(maskElement, bitdEdxHypertriton) || passdEdx) && // logical AND with dEdx
(posRowsOK && (negRowsOK || dPreselectOnlyBaryons)) && // rows requirement
((posRowsOK || longPosITSonly) && (negRowsOK || longNegITSonly)) && // if ITS-only, check for min length
if ((bitcheck(maskElement, bitdEdxHypertriton) || passdEdx) && // logical AND with dEdx
(posRowsOK && (negRowsOK || dPreselectOnlyBaryons)) && // rows requirement
((posRowsOK || longPosITSonly) && (negRowsOK || longNegITSonly)) && // if ITS-only, check for min length
(!forceITSOnlyMesons || negITSonly))
bitset(maskElement, bitTrackQuality);
if ((bitcheck(maskElement, bitdEdxAntiHypertriton) || passdEdx) && // logical AND with dEdx
(negRowsOK && (posRowsOK || dPreselectOnlyBaryons)) && // rows requirement
((posRowsOK || longPosITSonly) && (negRowsOK || longNegITSonly)) && // if ITS-only, check for min length
if ((bitcheck(maskElement, bitdEdxAntiHypertriton) || passdEdx) && // logical AND with dEdx
(negRowsOK && (posRowsOK || dPreselectOnlyBaryons)) && // rows requirement
((posRowsOK || longPosITSonly) && (negRowsOK || longNegITSonly)) && // if ITS-only, check for min length
(!forceITSOnlyMesons || posITSonly))
bitset(maskElement, bitTrackQuality);
}
Expand Down

0 comments on commit 8fff473

Please sign in to comment.