Skip to content

Commit

Permalink
Backup
Browse files Browse the repository at this point in the history
  • Loading branch information
beomki-yeo committed Nov 21, 2023
1 parent 9a697bd commit 1c129e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ spacepoint_collection_types::host spacepoint_formation<detector_t>::operator()(
// This local to global transformation only works for 2D planar
// measurement
// (e.g. barrel pixel and endcap pixel detector)
const auto global = sf.local_to_global({}, ms.local, {});
const auto global = sf.bound_to_global({}, ms.local, {});

// Fill result with this spacepoint
result.push_back({global, ms});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ TRACCC_HOST_DEVICE inline void form_spacepoints(

// This local to global transformation only works for 2D planar measurement
// (e.g. barrel pixel and endcap pixel detector)
const auto global = sf.local_to_global({}, ms.local, {});
const auto global = sf.bound_to_global({}, ms.local, {});

spacepoints.push_back({global, ms});
}
Expand Down

0 comments on commit 1c129e9

Please sign in to comment.