Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .gitignore
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This file should not be modified in this PR.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do you mean not to change .gitignore in this PR?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Exactly, that file is not relevant to this PR.

Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@
# (c) 2021-2025 CERN for the benefit of the ACTS project
#
# Mozilla Public License Version 2.0
#Ignore .csv files
*.csv
*.csv~
#ignore files
example_ACTS.json
example_ACTS.json~
example.json~
main_test.py
main_test.py~
seeding_param.json
seeding_param.json~
*~

# Prerequisites
*.d
Expand Down
7 changes: 7 additions & 0 deletions examples/options/src/track_seeding.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,13 @@ track_seeding::track_seeding() : interface("Track Seeding Options") {
po::value(&m_seedfinder.impactMax)
->default_value(m_seedfinder.impactMax / unit<float>::mm),
"Maximum impact parameter [mm]");

m_desc.add_options()(
"seedfinder-deltaZMax",
po::value(&m_seedfinder.deltaZMax)
->default_value(m_seedfinder.deltaZMax / unit<float>::mm),
"Maximum Z distance between measurements [mm]");

m_desc.add_options()("seedfinder-sigmaScattering",
po::value(&m_seedfinder.sigmaScattering)
->default_value(m_seedfinder.sigmaScattering),
Expand Down