Skip to content

Commit c86ea4e

Browse files
committed
TPC Workflow: Don't write triggerwords if they are not created
1 parent 4a450cf commit c86ea4e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Detectors/TPC/workflow/src/RecoWorkflow.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ framework::WorkflowSpec getWorkflow(CompletionPolicyData* policyData, std::vecto
434434
(caClusterer || decompressTPC || inputType == InputType::PassThrough) && !isEnabled(OutputType::SendClustersPerSector)));
435435
}
436436

437-
if ((isEnabled(OutputType::TPCTriggers) || caClusterer) && !isEnabled(OutputType::DisableWriter)) {
437+
if ((isEnabled(OutputType::TPCTriggers) || (caClusterer && runGPUReco)) && !isEnabled(OutputType::DisableWriter)) {
438438
specs.push_back(o2::tpc::getTPCTriggerWriterSpec());
439439
}
440440

GPU/GPUTracking/Base/hip/GPUReconstructionHIPkernel.template.hip

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// granted to it by virtue of its status as an Intergovernmental Organization
1010
// or submit itself to any jurisdiction.
1111

12-
/// \file GPUReconstructionHIPkernel.cu
12+
/// \file GPUReconstructionHIPkernel.hip
1313
/// \author David Rohr
1414

1515
#define GPUCA_GPUCODE_COMPILEKERNELS

0 commit comments

Comments
 (0)