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
13 changes: 7 additions & 6 deletions Framework/Core/include/Framework/AnalysisHelpers.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,14 @@ template <TableRef R>
constexpr auto tableRef2ConfigParamSpec()
{
return o2::framework::ConfigParamSpec{
std::string{"input:"} + o2::aod::label<R>(),
framework::VariantType::String,
aod::sourceSpec<R>(),
{"\"\""}};
std::string{"input:"} + o2::aod::label<R>(),
framework::VariantType::String,
aod::sourceSpec<R>(),
{"\"\""}};
}

namespace {
namespace
{
template <soa::with_sources T>
inline constexpr auto getSources()
{
Expand Down Expand Up @@ -66,7 +67,7 @@ constexpr auto getInputMetadata() -> std::vector<framework::ConfigParamSpec>
{
return {};
}
}
} // namespace

template <TableRef R>
constexpr auto tableRef2InputSpec()
Expand Down
10 changes: 5 additions & 5 deletions Framework/Core/src/WorkflowHelpers.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -387,11 +387,11 @@ void WorkflowHelpers::injectServiceDevices(WorkflowSpec& workflow, ConfigContext
std::sort(ac.providedDYNs.begin(), ac.providedDYNs.end(), outputSpecLessThan);

DataProcessorSpec indexBuilder{
"internal-dpl-aod-index-builder",
{},
{},
readers::AODReaderHelpers::indexBuilderCallback(ac.requestedIDXs),
{}};
"internal-dpl-aod-index-builder",
{},
{},
readers::AODReaderHelpers::indexBuilderCallback(ac.requestedIDXs),
{}};
AnalysisSupportHelpers::addMissingOutputsToBuilder(ac.requestedIDXs, ac.requestedAODs, ac.requestedDYNs, indexBuilder);

for (auto& input : ac.requestedDYNs) {
Expand Down