Skip to content
Open
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
10 changes: 6 additions & 4 deletions Framework/Core/include/Framework/AnalysisTask.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ static constexpr bool is_enumeration_v<Enumeration<BEGIN, END, STEP>> = true;

// Helper struct which builds a DataProcessorSpec from
// the contents of an AnalysisTask...
namespace {
namespace
{
struct AnalysisDataProcessorBuilder {
template <typename T>
static ConfigParamSpec getSpec()
Expand Down Expand Up @@ -375,7 +376,7 @@ struct AnalysisDataProcessorBuilder {
std::invoke(processingFunction, task, g, std::get<A>(at)...);
}
};
}
} // namespace

struct SetDefaultProcesses {
std::vector<std::pair<std::string, bool>> map;
Expand All @@ -387,7 +388,8 @@ struct TaskName {
std::string value;
};

namespace {
namespace
{
template <typename T, typename... A>
auto getTaskNameSetProcesses(std::string& outputName, TaskName first, SetDefaultProcesses second, A... args)
{
Expand Down Expand Up @@ -451,7 +453,7 @@ auto getTaskNameSetProcesses(std::string& outputName, A... args)
return task;
}

}
} // namespace

/// Adaptor to make an AlgorithmSpec from a o2::framework::Task
///
Expand Down