Skip to content

Commit

Permalink
Use theta instead of number of measurements
Browse files Browse the repository at this point in the history
  • Loading branch information
beomki-yeo committed Oct 10, 2024
1 parent 9a34aeb commit 4e247c2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ TRACCC_HOST_DEVICE inline void fill_sort_keys(
}

// Key = The number of measurements
keys_device.at(globalIndex) = static_cast<traccc::scalar>(
track_candidates.at(globalIndex).items.size());
keys_device.at(globalIndex) =
device::get_sort_key(track_candidates.at(globalIndex).header);
ids_device.at(globalIndex) = globalIndex;
}

Expand Down

0 comments on commit 4e247c2

Please sign in to comment.