Skip to content

Commit 9a5f0e0

Browse files
authored
Merge 198a15e into sapling-pr-archive-ktf
2 parents 4e04ca9 + 198a15e commit 9a5f0e0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Framework/Core/src/ArrowSupport.cxx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -523,22 +523,22 @@ o2::framework::ServiceSpec ArrowSupport::arrowBackendSpec()
523523
// select outputs of type AOD which need to be saved
524524
// ATTENTION: if there are dangling outputs the getGlobalAODSink
525525
// has to be created in any case!
526-
std::vector<InputSpec> outputsInputsAOD;
526+
ac.outputsInputsAOD.clear();
527527

528528
for (auto ii = 0u; ii < outputsInputs.size(); ii++) {
529529
if (DataSpecUtils::partialMatch(outputsInputs[ii], extendedAODOrigins)) {
530530
auto ds = dod->getDataOutputDescriptors(outputsInputs[ii]);
531531
if (!ds.empty() || isDangling[ii]) {
532-
outputsInputsAOD.emplace_back(outputsInputs[ii]);
532+
ac.outputsInputsAOD.emplace_back(outputsInputs[ii]);
533533
}
534534
}
535535
}
536536

537537
// file sink for any AOD output
538-
if (!outputsInputsAOD.empty()) {
538+
if (!ac.outputsInputsAOD.empty()) {
539539
// add TFNumber and TFFilename as input to the writer
540-
outputsInputsAOD.emplace_back("tfn", "TFN", "TFNumber");
541-
outputsInputsAOD.emplace_back("tff", "TFF", "TFFilename");
540+
ac.outputsInputsAOD.emplace_back("tfn", "TFN", "TFNumber");
541+
ac.outputsInputsAOD.emplace_back("tff", "TFF", "TFFilename");
542542
workflow.push_back(AnalysisSupportHelpers::getGlobalAODSink(ctx));
543543
}
544544
// Move the dummy sink at the end, if needed

0 commit comments

Comments
 (0)