From 79e98844bc86172d0846591dbf6e84759a07f56b Mon Sep 17 00:00:00 2001 From: Felix Schlepper Date: Thu, 19 Jun 2025 21:02:18 +0200 Subject: [PATCH] ITS: GPU add missing output to GPUWorkflowSpec was missed initially. compliments #14425 and should now allow ITS MC to be run standalone on gpu. thanks @davidrohr! --- GPU/Workflow/src/GPUWorkflowSpec.cxx | 1 + 1 file changed, 1 insertion(+) diff --git a/GPU/Workflow/src/GPUWorkflowSpec.cxx b/GPU/Workflow/src/GPUWorkflowSpec.cxx index 8a755a703705f..b2260d99bedb8 100644 --- a/GPU/Workflow/src/GPUWorkflowSpec.cxx +++ b/GPU/Workflow/src/GPUWorkflowSpec.cxx @@ -1305,6 +1305,7 @@ Outputs GPURecoWorkflowSpec::outputs() if (mSpecConfig.processMC) { outputSpecs.emplace_back(gDataOriginITS, "VERTICESMCTR", 0, Lifetime::Timeframe); + outputSpecs.emplace_back(gDataOriginITS, "VERTICESMCPUR", 0, Lifetime::Timeframe); outputSpecs.emplace_back(gDataOriginITS, "TRACKSMCTR", 0, Lifetime::Timeframe); outputSpecs.emplace_back(gDataOriginITS, "ITSTrackMC2ROF", 0, Lifetime::Timeframe); }