From e11f961eeccff70ca36529211200f56f46961717 Mon Sep 17 00:00:00 2001 From: ALICE Action Bot Date: Thu, 15 Jan 2026 07:57:12 +0000 Subject: [PATCH] Please consider the following formatting changes --- PWGLF/Tasks/Resonances/heptaquark.cxx | 46 +++++++++++++++------------ 1 file changed, 25 insertions(+), 21 deletions(-) diff --git a/PWGLF/Tasks/Resonances/heptaquark.cxx b/PWGLF/Tasks/Resonances/heptaquark.cxx index d2d0482ab5b..f7c30a46ddf 100644 --- a/PWGLF/Tasks/Resonances/heptaquark.cxx +++ b/PWGLF/Tasks/Resonances/heptaquark.cxx @@ -12,28 +12,32 @@ /// \brief this is a starting point for the Resonances tutorial /// \author junlee kim +#include "PWGLF/DataModel/ReducedHeptaQuarkTables.h" + +#include "Common/Core/trackUtilities.h" + +#include "CommonConstants/PhysicsConstants.h" +#include "Framework/ASoAHelpers.h" +#include "Framework/AnalysisDataModel.h" +#include "Framework/AnalysisTask.h" +#include "Framework/StepTHn.h" +#include "Framework/runDataProcessing.h" #include -#include + #include -#include #include +#include +#include #include #include + #include + +#include #include #include #include #include -#include - -#include "Framework/AnalysisTask.h" -#include "Framework/ASoAHelpers.h" -#include "Framework/runDataProcessing.h" -#include "Framework/AnalysisDataModel.h" -#include "Framework/StepTHn.h" -#include "Common/Core/trackUtilities.h" -#include "PWGLF/DataModel/ReducedHeptaQuarkTables.h" -#include "CommonConstants/PhysicsConstants.h" using namespace o2; using namespace o2::framework; @@ -203,15 +207,15 @@ struct heptaquark { double cosHel = hqlambda_boost.Vect().Dot(hqphipair_boost.Vect()) / (hqlambda_boost.Vect().Mag() * hqphipair_boost.Vect().Mag()); if (std::abs(cosHel) > cfgCollinear) selection += 4; -/* - ROOT::Math::XYZVector rPV(col.posX(), col.posY(), col.posZ()); - ROOT::Math::XYZVector rSV(hq3.hqx(), hq3.hqy(), hq3.hqz()); - ROOT::Math::XYZVector L = rSV - rPV; - ROOT::Math::XYZVector exMom(ex.Px(), ex.Py(), ex.Pz()); - double cosPoint = L.Dot(exMom) / (L.R() * pEx.R() + 1e-9); - if (cosPoint < cfgCosPoint) - return 8; -*/ + /* + ROOT::Math::XYZVector rPV(col.posX(), col.posY(), col.posZ()); + ROOT::Math::XYZVector rSV(hq3.hqx(), hq3.hqy(), hq3.hqz()); + ROOT::Math::XYZVector L = rSV - rPV; + ROOT::Math::XYZVector exMom(ex.Px(), ex.Py(), ex.Pz()); + double cosPoint = L.Dot(exMom) / (L.R() * pEx.R() + 1e-9); + if (cosPoint < cfgCosPoint) + return 8; + */ return selection; }