Skip to content

Commit 6748092

Browse files
authored
Rename variable for clarity in V0 selection
1 parent eff41dc commit 6748092

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

PWGHF/HFC/TableProducer/correlatorXicHadrons.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -292,13 +292,13 @@ struct HfCorrelatorXicHadronsSelection {
292292
aod::V0Datas const& V0s)
293293
{
294294
bool isCandFound = false;
295-
const int64_t v0CandidatesMin = 1;
295+
const int64_t nCandidatesV0Min = 1;
296296

297297
if (!eventSelV0(collision)) {
298298
candSel(isCandFound);
299299
return;
300300
}
301-
if (V0s.size() < v0CandidatesMin) {
301+
if (V0s.size() < nCandidatesV0Min) {
302302
candSel(isCandFound);
303303
return;
304304
}

0 commit comments

Comments
 (0)