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