Skip to content

Commit 38f568f

Browse files
authored
Merge pull request #34 from alibuild/alibot-cleanup-10840
2 parents 8a984f4 + 1f00f8b commit 38f568f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Benchmarks/include/tables.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ namespace o2::aod
1414
{
1515
namespace extensions
1616
{
17-
DECLARE_SOA_DYNAMIC_COLUMN(Direct, direct, [](float x, float y, float z, float t) -> float { return t * (x*x + y*y + z*z); });
17+
DECLARE_SOA_DYNAMIC_COLUMN(Direct, direct, [](float x, float y, float z, float t) -> float { return t * (x * x + y * y + z * z); });
1818
DECLARE_SOA_COLUMN(DirectM, directm, float);
1919

2020
DECLARE_SOA_DYNAMIC_COLUMN(Indirect, indirect, [](float phi, float x, float y, float z, std::function<float(float, float, float, float)> const& f) -> float { return f(phi, x, y, z); });
2121
DECLARE_SOA_COLUMN(IndirectM, indirectm, float);
2222

2323
DECLARE_SOA_CONFIGURABLE_EXPRESSION_COLUMN(Expr, expr, float, "Expr");
24-
}
24+
} // namespace extensions
2525

2626
DECLARE_SOA_TABLE(ExtTracksD, "AOD", "TRKD", extensions::Direct<aod::track::X, aod::track::Y, aod::track::Z>);
2727
DECLARE_SOA_TABLE(ExtTracksID, "AOD", "TRKID", extensions::Indirect<aod::track::Phi, aod::track::X, aod::track::Y, aod::track::Z>);
@@ -33,4 +33,4 @@ DECLARE_SOA_CONFIGURABLE_EXTENDED_TABLE(TracksE, TracksIU, "TRKE", extensions::E
3333

3434
using TracksD = soa::Join<TracksIU, ExtTracksD>;
3535
using TracksID = soa::Join<TracksIU, ExtTracksID>;
36-
}
36+
} // namespace o2::aod

0 commit comments

Comments
 (0)