@@ -14,14 +14,14 @@ namespace o2::aod
1414{
1515namespace 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); });
1818DECLARE_SOA_COLUMN (DirectM, directm, float );
1919
2020DECLARE_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); });
2121DECLARE_SOA_COLUMN (IndirectM, indirectm, float );
2222
2323DECLARE_SOA_CONFIGURABLE_EXPRESSION_COLUMN (Expr, expr, float , " Expr" );
24- }
24+ } // namespace extensions
2525
2626DECLARE_SOA_TABLE (ExtTracksD, " AOD" , " TRKD" , extensions::Direct<aod::track::X, aod::track::Y, aod::track::Z>);
2727DECLARE_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
3434using TracksD = soa::Join<TracksIU, ExtTracksD>;
3535using TracksID = soa::Join<TracksIU, ExtTracksID>;
36- }
36+ } // namespace o2::aod
0 commit comments