Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added deltaPhiMax parameter for Seed Finder #1673

Merged
merged 2 commits into from
Nov 15, 2024

Conversation

bschmookler
Copy link
Contributor

Briefly, what does this PR introduce?

Following up on the presentation yesterday (here) on seeding inefficiencies at low momentum, I found that the Acts Orthogonal seeder does a comparison between the phi values of the middle/lower and middle/upper space points. By default, this parameter is set to 0.085 Rad:

https://github.com/acts-project/acts/blob/f6ed9013e76120137ae456583a04b554d88d9452/Core/include/Acts/Seeding/SeedFinderOrthogonalConfig.hpp#L79

This is checked, for example, here:

https://github.com/acts-project/acts/blob/f6ed9013e76120137ae456583a04b554d88d9452/Core/include/Acts/Seeding/SeedFinderOrthogonal.ipp#L82-L86

And this check is done prior to other doublet or triplet checks on the potential seed triplet.

This PR adds this deltaPhiMax parameter as an additional parameter in the seed finder. Right now, I keep the parameter at the default value in the configuration file. The parameter can be adjusted on the command line by doing this, for example:

-Ptracking:CentralTrackSeedingResults:deltaPhiMax=0.25

This will allow the parameter to be studied with single-particle and DIS events.

A quick test with negative muons with total momentum of 500 MeV/c and eta = [-4,4] shows the following. With the default parameter, we see this for 10 events:

root [1] events->Scan("CentralTrackSeedingResults.qOverP:CentralCKFTrackParametersUnfiltered.qOverP:CentralCKFTrackParameters.qOverP")
***********************************************************
*    Row   * Instance * CentralTr * CentralCK * CentralCK *
***********************************************************
*        0 *        0 * -2.017637 * -1.997553 * -1.997553 *
*        0 *        1 * -2.050001 * -1.997604 *           *
*        1 *        0 *           *           *           *
*        2 *        0 * -2.155712 * -2.155881 *           *
*        3 *        0 *           *           *           *
*        4 *        0 *           *           *           *
*        5 *        0 * -1.975466 * -1.992832 * -1.992857 *
*        5 *        1 *           * -1.992857 *           *
*        6 *        0 *           *           *           *
*        7 *        0 *           *           *           *
*        8 *        0 *           *           *           *
*        9 *        0 * -1.977929 * -1.975284 * -1.975284 *
***********************************************************

Seeds are formed in 4 events.

If we set deltaPhiMax=0.25, we get

root [4] events->Scan("CentralTrackSeedingResults.qOverP:CentralCKFTrackParametersUnfiltered.qOverP:CentralCKFTrackParameters.qOverP")
***********************************************************
*    Row   * Instance * CentralTr * CentralCK * CentralCK *
***********************************************************
*        0 *        0 * -2.017637 * -1.997553 * -1.997553 *
*        0 *        1 * -2.017606 * -1.997554 *           *
*        1 *        0 *           *           *           *
*        2 *        0 * -1.948913 * -1.945051 *           *
*        2 *        1 * -2.023722 * -2.024211 *           *
*        3 *        0 *           *           *           *
*        4 *        0 * -1.834852 * -2.038357 * -2.038357 *
*        5 *        0 * -1.985146 * -1.992834 * -1.992861 *
*        5 *        1 * -1.991421 * -1.992859 *           *
*        5 *        2 *           * -1.992836 *           *
*        5 *        3 *           * -1.992861 *           *
*        6 *        0 *           *           *           *
*        7 *        0 * -1.932271 * -1.938517 *           *
*        8 *        0 * -1.900319 * -1.974888 *           *
*        8 *        1 * -1.956748 * -1.954931 *           *
*        9 *        0 * -1.977929 * -1.975284 * -1.975284 *
***********************************************************

Seeds are formed in 7 events. Some of these events fail to produce tracks that survive the ambiguity solver, which needs to be studied.

What kind of change does this PR introduce?

  • Bug fix (issue #__)
  • New feature (issue #__)
  • Documentation update
  • Other: __

Please check if this PR fulfills the following:

  • Tests for the changes have been added
  • Documentation has been added / updated
  • Changes have been communicated to collaborators @Jeet-bhai

Does this PR introduce breaking changes? What changes might users need to make to their code?

No

Does this PR change default behavior?

No

@github-actions github-actions bot added the topic: tracking Relates to tracking reconstruction label Nov 15, 2024
Copy link
Member

@veprbl veprbl left a comment

Choose a reason for hiding this comment

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

LGTM

@bschmookler bschmookler added this pull request to the merge queue Nov 15, 2024
Merged via the queue into main with commit 0fcd81f Nov 15, 2024
84 of 86 checks passed
@bschmookler bschmookler deleted the add_phi_range_seed_parameter branch November 15, 2024 20:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
topic: tracking Relates to tracking reconstruction
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants