-
Notifications
You must be signed in to change notification settings - Fork 173
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Experiment cuts to dublets in seed finder (#2326)
This PR adds an option to include experimental specific cuts to discard bottom-middle dublets in a certain (r, eta) region of the detector. This PR is related to the implementation of the ITk "fast tracking" configuration from PR #2166 (I am splitting the changes to make it more organised @CarloVarni @noemina) For the integration with Athena we will need to implement something like that in Athena: ``` m_finderCfg.experimentCuts.connect( [](const void*, const float& bottomRadius, const float& cotTheta) -> bool { if (bottomRadius < fastTrackingRMin and (cotTheta > fastTrackingCotThetaMax or cotTheta < -fastTrackingCotThetaMax)) { return false; } return true; } ``` where: ``` float fastTrackingRMin = 50. * Acts::UnitConstants::mm; float fastTrackingCotThetaMax = 1.5; ```
- Loading branch information
1 parent
b77e16e
commit f32f90f
Showing
5 changed files
with
47 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters