From 834191d68d44a4374104966d889a6f1d153a8e3d Mon Sep 17 00:00:00 2001 From: ALICE Action Bot Date: Wed, 15 Jan 2025 08:36:27 +0000 Subject: [PATCH] Please consider the following formatting changes --- PWGUD/Tasks/fwdMuonsUPC.cxx | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/PWGUD/Tasks/fwdMuonsUPC.cxx b/PWGUD/Tasks/fwdMuonsUPC.cxx index 217e7116975..433fe2d4572 100644 --- a/PWGUD/Tasks/fwdMuonsUPC.cxx +++ b/PWGUD/Tasks/fwdMuonsUPC.cxx @@ -642,7 +642,7 @@ struct fwdMuonsUPC { { // check that all pairs are mu+mu- - if (std::abs(McPart1.pdgCode()) !=13 && std::abs(McPart2.pdgCode()) != 13) + if (std::abs(McPart1.pdgCode()) != 13 && std::abs(McPart2.pdgCode()) != 13) LOGF(info, "PDG codes: %d | %d", McPart1.pdgCode(), McPart2.pdgCode()); // create Lorentz vectors @@ -711,7 +711,7 @@ struct fwdMuonsUPC { { // check that all pairs are mu+mu- - if (std::abs(McPart1.pdgCode()) !=13 && std::abs(McPart2.pdgCode()) != 13) + if (std::abs(McPart1.pdgCode()) != 13 && std::abs(McPart2.pdgCode()) != 13) LOGF(info, "PDG codes: %d | %d", McPart1.pdgCode(), McPart2.pdgCode()); // V0 selection @@ -930,7 +930,7 @@ struct fwdMuonsUPC { // loop over the candidates for (const auto& item : tracksPerCandAll) { if (item.second.size() != 4) { - LOGF(info, "number track (reco + gen) = %d",item.second.size()); + LOGF(info, "number track (reco + gen) = %d", item.second.size()); continue; } @@ -947,8 +947,9 @@ struct fwdMuonsUPC { // as the one used by Nazar auto nz_trMc1 = McParts.iteratorAt(tr1.udMcParticleId()); auto nz_trMc2 = McParts.iteratorAt(tr2.udMcParticleId()); - - if(nz_trMc1 != trMc1) LOGF(info, "diff wrt Nazar!"); + + if (nz_trMc1 != trMc1) + LOGF(info, "diff wrt Nazar!"); processMcRecoCand(cand, tr1, trMc1, tr2, trMc2); } }