Skip to content

Commit 1c7a30f

Browse files
alibuildJifeng Deng
authored andcommitted
Please consider the following formatting changes
1 parent ebfff6d commit 1c7a30f

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

PWGDQ/Tasks/tableReader_withAssoc.cxx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3472,7 +3472,7 @@ struct AnalysisAsymmetricPairing {
34723472

34733473
// Template function to run same event pairing with asymmetric pairs (e.g. kaon-pion)
34743474
template <bool TTwoProngFitter, int TPairType, uint32_t TEventFillMap, uint32_t TTrackFillMap, typename TEvents, typename TTrackAssocs, typename TTracks>
3475-
void runAsymmetricPairing(TEvents const& events, Preslice<TTrackAssocs>& preslice, TTrackAssocs const& assocs, TTracks const& /*tracks*/)
3475+
void runAsymmetricPairing(TEvents const& events, Preslice<TTrackAssocs>& preslice, TTrackAssocs const& /*assocs*/, TTracks const& /*tracks*/)
34763476
{
34773477
fPairCount.clear();
34783478

@@ -3486,19 +3486,19 @@ struct AnalysisAsymmetricPairing {
34863486
int sign1 = 0;
34873487
int sign2 = 0;
34883488

3489-
//Reserve capacity for the output tables
3489+
// Reserve capacity for the output tables
34903490
int64_t reserveSize = 0;
34913491
for (auto const& event : events) {
34923492
if (!event.isEventSelected_bit(0)) {
34933493
continue;
34943494
}
34953495
if (fConfigRemoveCollSplittingCandidates.value && event.isEventSelected_bit(2)) {
3496-
continue;
3496+
continue;
34973497
}
34983498
auto groupedLegAAssocs = legACandidateAssocs.sliceBy(preslice, event.globalIndex());
34993499
auto groupedLegBAssocs = legBCandidateAssocs.sliceBy(preslice, event.globalIndex());
35003500
reserveSize += static_cast<int64_t>(groupedLegAAssocs.size()) *
3501-
static_cast<int64_t>(groupedLegBAssocs.size());
3501+
static_cast<int64_t>(groupedLegBAssocs.size());
35023502
}
35033503
ditrackList.reserve(reserveSize);
35043504
ditrackExtraList.reserve(reserveSize);

0 commit comments

Comments
 (0)