Skip to content

Commit 71cc61c

Browse files
committed
GPU TPC: always enable triggerHandling in tpc-reco workflow and in gpu-reco workflow if caclusterer is active
1 parent 84a9785 commit 71cc61c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Detectors/TPC/workflow/src/RecoWorkflow.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ framework::WorkflowSpec getWorkflow(CompletionPolicyData* policyData, std::vecto
446446
cfg.processMC = propagateMC;
447447
cfg.sendClustersPerSector = isEnabled(OutputType::SendClustersPerSector);
448448
cfg.askDISTSTF = askDISTSTF;
449-
cfg.tpcTriggerHandling = isEnabled(OutputType::TPCTriggers);
449+
cfg.tpcTriggerHandling = isEnabled(OutputType::TPCTriggers) || cfg.caClusterer;
450450

451451
Inputs ggInputs;
452452
auto ggRequest = std::make_shared<o2::base::GRPGeomRequest>(false, true, false, true, true, o2::base::GRPGeomRequest::Aligned, ggInputs, true);

GPU/Workflow/src/gpu-reco-workflow.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ WorkflowSpec defineDataProcessing(ConfigContext const& cfgc)
171171
cfg.askDISTSTF = !cfgc.options().get<bool>("ignore-dist-stf");
172172
cfg.readTRDtracklets = isEnabled(inputTypes, ioType::TRDTracklets);
173173
cfg.runTRDTracking = isEnabled(outputTypes, ioType::TRDTracks);
174-
cfg.tpcTriggerHandling = isEnabled(outputTypes, ioType::TPCTriggers);
174+
cfg.tpcTriggerHandling = isEnabled(outputTypes, ioType::TPCTriggers) || cfg.caClusterer;
175175

176176
Inputs ggInputs;
177177
auto ggRequest = std::make_shared<o2::base::GRPGeomRequest>(false, true, false, true, true, o2::base::GRPGeomRequest::Aligned, ggInputs, true);

0 commit comments

Comments
 (0)