Skip to content

Commit c803e17

Browse files
author
Fabrice Le Goff
committed
revert to triplet_seeding_alg output type for the common seed type
1 parent 817a6a8 commit c803e17

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

examples/run/cuda/full_chain_algorithm.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -229,8 +229,7 @@ full_chain_algorithm::output_type full_chain_algorithm::operator()(
229229
const spacepoint_formation_algorithm::output_type spacepoints =
230230
m_spacepoint_formation(m_device_detector, measurements);
231231

232-
seeding_algorithm::output_type seeds;
233-
232+
triplet_seeding_algorithm::output_type seeds;
234233
if(usingGBTS) {
235234
seeds = m_gbts_seeding(spacepoints, measurements);
236235
}
@@ -290,7 +289,7 @@ bound_track_parameters_collection_types::host full_chain_algorithm::seeding(
290289
const spacepoint_formation_algorithm::output_type spacepoints =
291290
m_spacepoint_formation(m_device_detector, measurements);
292291

293-
seeding_algorithm::output_type seeds;
292+
triplet_seeding_algorithm::output_type seeds;
294293
if (usingGBTS) {
295294
seeds = m_gbts_seeding(spacepoints, measurements);
296295
} else {

0 commit comments

Comments
 (0)