From 1f00f8b3a8a61521e64ec5b74be0ac3260bc5609 Mon Sep 17 00:00:00 2001 From: ALICE Action Bot Date: Mon, 14 Apr 2025 10:41:50 +0000 Subject: [PATCH] Please consider the following formatting changes --- Benchmarks/include/tables.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Benchmarks/include/tables.h b/Benchmarks/include/tables.h index 46c1b2bbac2..36406548571 100644 --- a/Benchmarks/include/tables.h +++ b/Benchmarks/include/tables.h @@ -14,14 +14,14 @@ namespace o2::aod { namespace extensions { -DECLARE_SOA_DYNAMIC_COLUMN(Direct, direct, [](float x, float y, float z, float t) -> float { return t * (x*x + y*y + z*z); }); +DECLARE_SOA_DYNAMIC_COLUMN(Direct, direct, [](float x, float y, float z, float t) -> float { return t * (x * x + y * y + z * z); }); DECLARE_SOA_COLUMN(DirectM, directm, float); DECLARE_SOA_DYNAMIC_COLUMN(Indirect, indirect, [](float phi, float x, float y, float z, std::function const& f) -> float { return f(phi, x, y, z); }); DECLARE_SOA_COLUMN(IndirectM, indirectm, float); DECLARE_SOA_CONFIGURABLE_EXPRESSION_COLUMN(Expr, expr, float, "Expr"); -} +} // namespace extensions DECLARE_SOA_TABLE(ExtTracksD, "AOD", "TRKD", extensions::Direct); DECLARE_SOA_TABLE(ExtTracksID, "AOD", "TRKID", extensions::Indirect); @@ -33,4 +33,4 @@ DECLARE_SOA_CONFIGURABLE_EXTENDED_TABLE(TracksE, TracksIU, "TRKE", extensions::E using TracksD = soa::Join; using TracksID = soa::Join; -} +} // namespace o2::aod