Skip to content

Commit

Permalink
Fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
beomki-yeo committed Oct 17, 2024
1 parent a9b9f10 commit c8c9c85
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/run/cuda/seeding_example_cuda.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -226,14 +226,14 @@ int seq_run(const traccc::opts::track_seeding& seeding_opts,
// Read the hits from the relevant event file
traccc::io::read_spacepoints(
spacepoints_per_event, event, input_opts.directory,
(input_opts.use_acts_geom_source ? &detector : nullptr),
(input_opts.use_acts_geom_source ? &host_det : nullptr),
input_opts.format);

// Read measurements
traccc::io::read_measurements(
measurements_per_event, event,
(input_opts.use_acts_geom_source ? &detector : nullptr),
&host_det, input_opts.format);
measurements_per_event, event, input_opts.directory,
(input_opts.use_acts_geom_source ? &host_det : nullptr),
input_opts.format);
} // stop measuring hit reading timer

/*----------------------------
Expand Down

0 comments on commit c8c9c85

Please sign in to comment.