From c142b97018a9f41ccaba2bdd6f333cabf6464fed Mon Sep 17 00:00:00 2001 From: ALICE Action Bot Date: Thu, 3 Apr 2025 12:20:55 +0000 Subject: [PATCH] Please consider the following formatting changes --- Framework/Core/include/Framework/ASoA.h | 2 +- Framework/Core/include/Framework/AnalysisManagers.h | 9 ++++++--- Framework/Core/include/Framework/Expressions.h | 2 +- Framework/Core/test/test_TableSpawner.cxx | 2 +- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/Framework/Core/include/Framework/ASoA.h b/Framework/Core/include/Framework/ASoA.h index b23a312948a11..01f9eeb7bd66b 100644 --- a/Framework/Core/include/Framework/ASoA.h +++ b/Framework/Core/include/Framework/ASoA.h @@ -3162,7 +3162,7 @@ consteval auto getIndexTargets() using _Name_ = _Name_##From>; #define DECLARE_SOA_CONFIGURABLE_EXTENDED_TABLE(_Name_, _Table_, _Description_, ...) \ - O2HASH(#_Name_ "CfgExtension"); \ + O2HASH(#_Name_ "CfgExtension"); \ DECLARE_SOA_CONFIGURABLE_EXTENDED_TABLE_FULL(_Name_, #_Name_ "CfgExtension", _Table_, "AOD", "EX" _Description_, 0, __VA_ARGS__) #define DECLARE_SOA_INDEX_TABLE_FULL(_Name_, _Key_, _Origin_, _Version_, _Desc_, _Exclusive_, ...) \ diff --git a/Framework/Core/include/Framework/AnalysisManagers.h b/Framework/Core/include/Framework/AnalysisManagers.h index dbf8ebb5f439a..330eaf01f0be4 100644 --- a/Framework/Core/include/Framework/AnalysisManagers.h +++ b/Framework/Core/include/Framework/AnalysisManagers.h @@ -141,17 +141,20 @@ bool requestInputs(std::vector&, T const&) } template -const char* controlOption() { +const char* controlOption() +{ return "control:spawn"; } template -const char* controlOption() { +const char* controlOption() +{ return "control:build"; } template -const char* controlOption() { +const char* controlOption() +{ return "control:define"; } diff --git a/Framework/Core/include/Framework/Expressions.h b/Framework/Core/include/Framework/Expressions.h index 14a6096560a9c..1d2883418de71 100644 --- a/Framework/Core/include/Framework/Expressions.h +++ b/Framework/Core/include/Framework/Expressions.h @@ -416,7 +416,7 @@ struct Filter { (void)designateSubtrees(node.get()); } - Filter& operator= (Filter&& other) noexcept + Filter& operator=(Filter&& other) noexcept { node = std::move(other.node); return *this; diff --git a/Framework/Core/test/test_TableSpawner.cxx b/Framework/Core/test/test_TableSpawner.cxx index 5bbb442e94764..e67e62878bf59 100644 --- a/Framework/Core/test/test_TableSpawner.cxx +++ b/Framework/Core/test/test_TableSpawner.cxx @@ -77,7 +77,7 @@ TEST_CASE("TestTableSpawner") } Defines excpts; - excpts.projectors[0] = test::x* test::x + test::y * test::y + test::z * test::z; + excpts.projectors[0] = test::x * test::x + test::y * test::y + test::z * test::z; auto extension_2 = ExcPointsCfgExtension{o2::framework::spawner>({t1}, o2::aod::Hash<"ExcPoints"_h>::str, excpts.projectors.data(), excpts.projector)}; auto excpoints = ExcPoints{{t1, extension_2.asArrowTable()}, 0};