Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Framework/Core/include/Framework/ASoA.h
Original file line number Diff line number Diff line change
Expand Up @@ -3162,7 +3162,7 @@ consteval auto getIndexTargets()
using _Name_ = _Name_##From<o2::aod::Hash<_Origin_ ""_h>>;

#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_, ...) \
Expand Down
9 changes: 6 additions & 3 deletions Framework/Core/include/Framework/AnalysisManagers.h
Original file line number Diff line number Diff line change
Expand Up @@ -141,17 +141,20 @@ bool requestInputs(std::vector<InputSpec>&, T const&)
}

template <is_spawns T>
const char* controlOption() {
const char* controlOption()
{
return "control:spawn";
}

template <is_builds T>
const char* controlOption() {
const char* controlOption()
{
return "control:build";
}

template <is_defines T>
const char* controlOption() {
const char* controlOption()
{
return "control:define";
}

Expand Down
2 changes: 1 addition & 1 deletion Framework/Core/include/Framework/Expressions.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion Framework/Core/test/test_TableSpawner.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ TEST_CASE("TestTableSpawner")
}

Defines<ExcPoints> 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<o2::aod::Hash<"EXCFGPTS/0"_h>>({t1}, o2::aod::Hash<"ExcPoints"_h>::str, excpts.projectors.data(), excpts.projector)};
auto excpoints = ExcPoints{{t1, extension_2.asArrowTable()}, 0};
Expand Down