Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Please consider the following formatting changes to #13880 #110

Open
wants to merge 1 commit into
base: dev_pull_request
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@

// clang-format off
$<JOIN:$<TARGET_PROPERTY:O2_GPU_KERNELS,O2_GPU_KERNELS>,>
// clang-format on
// clang-format on
4 changes: 2 additions & 2 deletions GPU/GPUTracking/TRDTracking/GPUTRDTracker.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -442,8 +442,8 @@ GPUd() bool GPUTRDTracker_t<TRDTRK, PROP>::CalculateSpacePoints(int32_t iCollisi
int32_t trkltIdxStart = trkltIdxOffset + iFirstTrackletInDet;
for (int32_t trkltIdx = trkltIdxStart; trkltIdx < trkltIdxStart + nTrackletsInDet; ++trkltIdx) {
int32_t trkltZbin = tracklets[trkltIdx].GetZbin();
float xTrkltDet[3] = {0.f}; // trklt position in chamber coordinates
float xTrkltSec[3] = {0.f}; // trklt position in sector coordinates
float xTrkltDet[3] = {0.f}; // trklt position in chamber coordinates
float xTrkltSec[3] = {0.f}; // trklt position in sector coordinates
xTrkltDet[0] = mGeo->AnodePos() + sRadialOffset;
xTrkltDet[1] = tracklets[trkltIdx].GetY();
xTrkltDet[2] = pp->GetRowPos(trkltZbin) - pp->GetRowSize(trkltZbin) / 2.f - pp->GetRowPos(pp->GetNrows() / 2);
Expand Down
Loading