From cf09ad64f3bb5f87befeea94cb8ac088c4df5419 Mon Sep 17 00:00:00 2001 From: ALICE Action Bot Date: Wed, 10 Jul 2024 08:57:53 +0000 Subject: [PATCH] Please consider the following formatting changes --- PWGDQ/Tasks/filterPPwithAssociation.cxx | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/PWGDQ/Tasks/filterPPwithAssociation.cxx b/PWGDQ/Tasks/filterPPwithAssociation.cxx index 14fcd66219b..e0f25d06e01 100644 --- a/PWGDQ/Tasks/filterPPwithAssociation.cxx +++ b/PWGDQ/Tasks/filterPPwithAssociation.cxx @@ -696,14 +696,14 @@ struct DQFilterPPTask { uint32_t pairFilter = 0; if (pairingMask > 0) { // run pairing on the collision grouped associations - for (auto& [a1, a2] : combinations(barrelAssocs, barrelAssocs)) { + for (auto& [a1, a2] : combinations(barrelAssocs, barrelAssocs)) { // get the tracks from the index stored in the association auto t1 = a1.template track_as(); auto t2 = a2.template track_as(); - ROOT::Math::PtEtaPhiMVector v1(t1.pt(), t1.eta(), t1.phi(), o2::constants::physics::MassElectron); - ROOT::Math::PtEtaPhiMVector v2(t2.pt(), t2.eta(), t2.phi(), o2::constants::physics::MassElectron); - ROOT::Math::PtEtaPhiMVector v12 = v1 + v2; + ROOT::Math::PtEtaPhiMVector v1(t1.pt(), t1.eta(), t1.phi(), o2::constants::physics::MassElectron); + ROOT::Math::PtEtaPhiMVector v2(t2.pt(), t2.eta(), t2.phi(), o2::constants::physics::MassElectron); + ROOT::Math::PtEtaPhiMVector v12 = v1 + v2; // check the pairing mask and that the tracks share a cut bit pairFilter = pairingMask & a1.isDQBarrelSelected() & a2.isDQBarrelSelected(); @@ -726,12 +726,12 @@ struct DQFilterPPTask { if (!fBarrelPairCuts[icut].IsSelected(VarManager::fgValues)) { continue; } - std::cout << "***" << std::endl; - std::cout << "*** Selected BC : " <FillHistClass(fBarrelPairHistNames[icut].Data(), VarManager::fgValues);