Skip to content

Commit aad6904

Browse files
committed
fix linter
1 parent 35a07b5 commit aad6904

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

PWGLF/Tasks/Strangeness/lambdaTwoPartPolarization.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -235,19 +235,19 @@ struct LfLambdaTwoPartPolarization {
235235
} // event selection
236236

237237
template <typename TCollision, typename V0>
238-
bool selectionV0(TCollision const& collision, V0 const& candidate, int LambdaTag)
238+
bool selectionV0(TCollision const& collision, V0 const& candidate, int lambdaPid)
239239
{
240240
if (candidate.v0radius() < cfgv0radiusMin) {
241241
return false;
242242
}
243-
if (LambdaTag) {
243+
if (lambdaPid == 1) {
244244
if (std::abs(candidate.dcapostopv()) < cfgDCAPrToPVMin) {
245245
return false;
246246
}
247247
if (std::abs(candidate.dcanegtopv()) < cfgDCAPiToPVMin) {
248248
return false;
249249
}
250-
} else if (LambdaTag == 0) {
250+
} else if (lambdaPid == 0) {
251251
if (std::abs(candidate.dcapostopv()) < cfgDCAPiToPVMin) {
252252
return false;
253253
}

0 commit comments

Comments
 (0)