Skip to content

Commit ca8a2df

Browse files
committed
secondary-vertexing-workflow: request CTP sources only if TPC is included
1 parent 6593df3 commit ca8a2df

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Detectors/GlobalTrackingWorkflow/src/secondary-vertexing-workflow.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,9 @@ WorkflowSpec defineDataProcessing(ConfigContext const& configcontext)
9494
}
9595
if (src[GID::TPC]) {
9696
srcClus |= GID::getSourceMask(GID::TPC);
97-
}
98-
if (sclOpt.requestCTPLumi) {
99-
src = src | GID::getSourcesMask("CTP");
97+
if (sclOpt.requestCTPLumi) {
98+
src = src | GID::getSourcesMask("CTP");
99+
}
100100
}
101101
WorkflowSpec specs;
102102
if (sclOpt.needTPCScalersWorkflow() && !configcontext.options().get<bool>("disable-root-input")) {

0 commit comments

Comments
 (0)