Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AJPfleger committed Dec 2, 2024
1 parent bf997eb commit 87e6d0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/src/Vertexing/AdaptiveGridTrackDensity.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ double AdaptiveGridTrackDensity::getBinCenter(std::int32_t bin,
}

std::int32_t AdaptiveGridTrackDensity::getBin(double value, double binExtent) {
return static_cast<int>(std::floor(value / binExtent - 0.5) + 1);
return static_cast<std::int32_t>(std::floor(value / binExtent - 0.5) + 1);
}

std::uint32_t AdaptiveGridTrackDensity::getTrkGridSize(
Expand Down

0 comments on commit 87e6d0f

Please sign in to comment.