Skip to content

Commit af9cb29

Browse files
authored
Merge pull request #125 from alibuild/alibot-cleanup-14996
2 parents 5c22ff4 + 4b678b1 commit af9cb29

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

Framework/Core/include/Framework/AnalysisTask.h

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ struct AnalysisDataProcessorBuilder {
321321
analysis_task_parsers::bindInternalIndicesPartition(element, &groupingTable);
322322
return true;
323323
},
324-
task);
324+
task);
325325

326326
if constexpr (sizeof...(Associated) == 0) {
327327
// single argument to process
@@ -330,7 +330,7 @@ struct AnalysisDataProcessorBuilder {
330330
analysis_task_parsers::setGroupedCombination(element, groupingTable);
331331
return true;
332332
},
333-
task);
333+
task);
334334
if constexpr (soa::is_iterator<G>) {
335335
for (auto& element : groupingTable) {
336336
std::invoke(processingFunction, task, *element);
@@ -365,7 +365,7 @@ struct AnalysisDataProcessorBuilder {
365365
analysis_task_parsers::bindExternalIndicesPartition(t, &x);
366366
return true;
367367
},
368-
task);
368+
task);
369369
};
370370
groupingTable.bindExternalIndices(&std::get<std::decay_t<Associated>>(associatedTables)...);
371371

@@ -381,7 +381,7 @@ struct AnalysisDataProcessorBuilder {
381381
analysis_task_parsers::setGroupedCombination(t, groupingTable, associatedTables);
382382
return true;
383383
},
384-
task);
384+
task);
385385
overwriteInternalIndices(associatedTables, associatedTables);
386386
if constexpr (soa::is_iterator<std::decay_t<G>>) {
387387
auto slicer = GroupSlicer(groupingTable, associatedTables, slices);
@@ -399,7 +399,7 @@ struct AnalysisDataProcessorBuilder {
399399
analysis_task_parsers::bindExternalIndicesPartition(x, &groupingTable);
400400
return true;
401401
},
402-
task);
402+
task);
403403

404404
invokeProcessWithArgs(task, processingFunction, slice.groupingElement(), associatedSlices);
405405
}
@@ -409,7 +409,7 @@ struct AnalysisDataProcessorBuilder {
409409
analysis_task_parsers::bindExternalIndicesPartition(x, &groupingTable);
410410
return true;
411411
},
412-
task);
412+
task);
413413

414414
invokeProcessWithArgs(task, processingFunction, groupingTable, associatedTables);
415415
}
@@ -547,7 +547,7 @@ DataProcessorSpec adaptAnalysisTask(ConfigContext const& ctx, Args&&... args)
547547
homogeneous_apply_refs_sized<numElements>([&inputs](auto& element) {
548548
return analysis_task_parsers::requestInputs(inputs, element);
549549
},
550-
*task.get());
550+
*task.get());
551551

552552
// no static way to check if the task defines any processing, we can only make sure it subscribes to at least something
553553
if (inputs.empty() == true) {
@@ -576,7 +576,7 @@ DataProcessorSpec adaptAnalysisTask(ConfigContext const& ctx, Args&&... args)
576576
analysis_task_parsers::postRunService(eosContext, element);
577577
analysis_task_parsers::postRunOutput(eosContext, element);
578578
return true; },
579-
*task.get());
579+
*task.get());
580580
eosContext.services().get<ControlService>().readyToQuit(QuitRequest::Me);
581581
};
582582

@@ -595,7 +595,7 @@ DataProcessorSpec adaptAnalysisTask(ConfigContext const& ctx, Args&&... args)
595595
homogeneous_apply_refs_sized<numElements>([&expressionInfos](auto& element) {
596596
return analysis_task_parsers::createExpressionTrees(expressionInfos, element);
597597
},
598-
*task.get());
598+
*task.get());
599599

600600
/// parse process functions to enable requested grouping caches - note that at this state process configurables have their final values
601601
if constexpr (requires { &T::process; }) {
@@ -616,13 +616,13 @@ DataProcessorSpec adaptAnalysisTask(ConfigContext const& ctx, Args&&... args)
616616
// reset partitions once per dataframe
617617
homogeneous_apply_refs_sized<numElements>([](auto& element) { return analysis_task_parsers::newDataframePartition(element); }, *task.get());
618618
// reset selections for the next dataframe
619-
std::ranges::for_each(expressionInfos, [](auto& info){ info.resetSelection = true; });
619+
std::ranges::for_each(expressionInfos, [](auto& info) { info.resetSelection = true; });
620620
// reset pre-slice for the next dataframe
621621
auto slices = pc.services().get<ArrowTableSlicingCache>();
622622
homogeneous_apply_refs_sized<numElements>([&pc, &slices](auto& element) {
623623
return analysis_task_parsers::updateSliceInfo(element, slices);
624624
},
625-
*(task.get()));
625+
*(task.get()));
626626
// initialize local caches
627627
homogeneous_apply_refs_sized<numElements>([&pc](auto& element) { return analysis_task_parsers::initializeCache(pc, element); }, *(task.get()));
628628
// prepare outputs

0 commit comments

Comments
 (0)