Skip to content

Commit 3917d5b

Browse files
committed
Please consider the following formatting changes
1 parent 251f0d0 commit 3917d5b

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

PWGDQ/Tasks/dqEfficiency_withAssoc.cxx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2319,7 +2319,7 @@ struct AnalysisSameEventPairing {
23192319
}
23202320

23212321
void processMCGenWithGrouping(soa::Filtered<MyEventsVtxCovSelected> const& events,
2322-
ReducedMCEvents const& /*mcEvents*/, ReducedMCTracks const& mcTracks)
2322+
ReducedMCEvents const& /*mcEvents*/, ReducedMCTracks const& mcTracks)
23232323
{
23242324
uint32_t mcDecision = 0;
23252325
int isig = 0;
@@ -2330,12 +2330,11 @@ struct AnalysisSameEventPairing {
23302330
if (!event.has_reducedMCevent()) {
23312331
continue;
23322332
}
2333-
2333+
23342334
if (fHasTwoProngGenMCsignals) {
23352335
auto groupedMCTracks = mcTracks.sliceBy(perReducedMcEvent, event.reducedMCeventId());
23362336
groupedMCTracks.bindInternalIndicesTo(&mcTracks);
2337-
for (auto& [t1, t2] : combinations(groupedMCTracks, groupedMCTracks))
2338-
{
2337+
for (auto& [t1, t2] : combinations(groupedMCTracks, groupedMCTracks)) {
23392338
auto t1_raw = groupedMCTracks.rawIteratorAt(t1.globalIndex());
23402339
auto t2_raw = groupedMCTracks.rawIteratorAt(t2.globalIndex());
23412340
if (t1_raw.reducedMCeventId() == t2_raw.reducedMCeventId()) {

0 commit comments

Comments
 (0)