Skip to content

Commit 6a27708

Browse files
authored
Fix loop condition for ITS tracking layers
1 parent 83e4ed3 commit 6a27708

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

GPU/Workflow/src/GPUWorkflowSpec.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1229,7 +1229,7 @@ Inputs GPURecoWorkflowSpec::inputs()
12291229
}
12301230

12311231
if (mSpecConfig.runITSTracking) {
1232-
for (unsigned int iLay{0}; iLay < (mSpecConfig.itsStaggered ? 7 : 0); ++iLay) {
1232+
for (unsigned int iLay{0}; iLay < (mSpecConfig.itsStaggered ? 7 : 1); ++iLay) {
12331233
inputs.emplace_back("compClusters", "ITS", "COMPCLUSTERS", iLay, Lifetime::Timeframe);
12341234
inputs.emplace_back("patterns", "ITS", "PATTERNS", iLay, Lifetime::Timeframe);
12351235
inputs.emplace_back("ROframes", "ITS", "CLUSTERSROF", iLay, Lifetime::Timeframe);

0 commit comments

Comments
 (0)