Skip to content

Commit 4aa4d20

Browse files
committed
GPU workflow: Don't print nTracks debug message if tracking is not running
1 parent f89020a commit 4aa4d20

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

GPU/Workflow/src/GPUWorkflowSpec.cxx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -692,7 +692,9 @@ void GPURecoWorkflowSpec::run(ProcessingContext& pc)
692692
}
693693
}
694694

695-
LOG(info) << "found " << ptrs.nOutputTracksTPCO2 << " track(s)";
695+
if (mConfig->configWorkflow.outputs.isSet(GPUDataTypes::InOutType::TPCMergedTracks)) {
696+
LOG(info) << "found " << ptrs.nOutputTracksTPCO2 << " track(s)";
697+
}
696698

697699
if (mSpecConfig.outputCompClusters) {
698700
CompressedClustersROOT compressedClusters = *ptrs.tpcCompressedClusters;

0 commit comments

Comments
 (0)