Skip to content

Commit 602e36f

Browse files
committed
Some more clang-formatting changes before PR
1 parent f85bdb7 commit 602e36f

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

PWGLF/Tasks/Strangeness/lambdaJetPolarizationIonsDerived.cxx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1469,7 +1469,8 @@ struct lambdajetpolarizationionsderived {
14691469
std::unordered_map<int64_t, MixedProxyInfo> mixedSubJetByCollision;
14701470
// First we build lookup tables based on current dataframe's collisions (connects pairs of jet proxies from similar collisions):
14711471
// (these proxies may come from collisions with no valid Lambdas, by construction, enabling more mixes)
1472-
if (fakePolSwitches.doMixedEventProxies) { // This is performed out of the resampling loop, so nProxyResamples will not resample event mixing candidates
1472+
// (This is performed out of the resampling loop, so nProxyResamples will not resample event mixing candidates)
1473+
if (fakePolSwitches.doMixedEventProxies) {
14731474
auto getMixCentrality = [this](o2::aod::RingCollision const& col) { return this->getCentrality(col); }; // Already filtered even though referencing only RingCollision, not an iterator to Filtered table
14741475

14751476
// For the leading particle:
@@ -1485,7 +1486,8 @@ struct lambdajetpolarizationionsderived {
14851486
true}; // Ignore overflows true
14861487

14871488
// SameKindPair defaults to CombinationsBlockStrictlyUpperSameIndexPolicy, so no same-event mixing should happen:
1488-
SameKindPair<o2::aod::RingCollisions, o2::aod::RingLeadPs, LeadPBinningType> leadPPair{ // Already filtered even though referencing only RingCollision, so no need to access the filtered table
1489+
//(Already filtered by Zvtx even though we call by aod::RingCollisions, so no need to access the filtered table)
1490+
SameKindPair<o2::aod::RingCollisions, o2::aod::RingLeadPs, LeadPBinningType> leadPPair{
14891491
leadPBinning, fakePolSwitches.mixedEventWindowSize, -1, collisions, std::make_tuple(leadPs), &mixCache};
14901492

14911493
std::unordered_map<int64_t, int> leadPCandidateCount;

0 commit comments

Comments
 (0)