Skip to content

Commit

Permalink
Fix the parameter names
Browse files Browse the repository at this point in the history
  • Loading branch information
beomki-yeo committed Oct 10, 2024
1 parent 10f6657 commit a763dec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion performance/src/efficiency/finding_performance_writer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ void finding_performance_writer::write_common(
// of the number of measurements
assert(measurements.size() > 0u);
if (particle_hit_counts.at(0).hit_counts / measurements.size() >
matching_ratio) {
m_cfg.matching_ratio) {
const auto pid = particle_hit_counts.at(0).ptc.particle_id;
match_counter[pid]++;
} else {
Expand Down
2 changes: 1 addition & 1 deletion performance/src/efficiency/seeding_performance_writer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ void seeding_performance_writer::write(
identify_contributing_particles(measurements, evt_map.meas_ptc_map);

if (particle_hit_counts.at(0).hit_counts / measurements.size() >
matching_ratio) {
m_cfg.matching_ratio) {
auto pid = particle_hit_counts.at(0).ptc.particle_id;
match_counter[pid]++;
}
Expand Down

0 comments on commit a763dec

Please sign in to comment.