We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5901752 commit efda2cbCopy full SHA for efda2cb
1 file changed
GPU/GPUTracking/Global/GPUChainTrackingClusterizer.cxx
@@ -936,10 +936,10 @@ int GPUChainTracking::RunTPCClusterizer(bool synchronizeOutput)
936
}
937
938
939
- if (mWaitForFinalInputs && iSliceBase >= 21 && iSliceBase < 21 + GetProcessingSettings().nTPCClustererLanes) {
+ if (mWaitForFinalInputs && iSliceBase >= 21 && (int)iSliceBase < 21 + GetProcessingSettings().nTPCClustererLanes) {
940
notifyForeignChainFinished();
941
942
- if (mWaitForFinalInputs && iSliceBase >= 30 && iSliceBase < 30 + GetProcessingSettings().nTPCClustererLanes) {
+ if (mWaitForFinalInputs && iSliceBase >= 30 && (int)iSliceBase < 30 + GetProcessingSettings().nTPCClustererLanes) {
943
mWaitForFinalInputs();
944
synchronizeCalibUpdate = DoQueuedUpdates(0, false);
945
0 commit comments