-
Notifications
You must be signed in to change notification settings - Fork 4.6k
[NGT] Extension of CA Pixel Tracking to Phase 2 Outer Tracker barrel #48921
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
Merged
Merged
Changes from all commits
Commits
Show all changes
40 commits
Select commit
Hold shift + click to select a range
b50b0b4
Implement Phase 2 PixelTracks CA Extension
rovere 4baf69b
Cache PinPSinOTBarrel. Use vector and unordered_map instead of set.
rovere 434fd5c
Move geometry-related logic in BeginRun.
rovere 3a4ec3e
Update logic in PixelTrackProducerFromSoAAlpaka to reuse the HitModul…
JanGerritSchulz 9451d7c
Fix a few CA bugs, add procModifier to enable the extension
JanGerritSchulz 30ce3ff
Reduce code duplication and improve readability in SoA merging
Parsifal-2045 e4615d1
Add new vector cuts for doublet building in CA
JanGerritSchulz 4bf0a50
Add option in PixelTrackProducerFromSoAAlpaka to exclude quadruplets …
JanGerritSchulz 4a89851
make chi2 cut on CA Tracks dependent on the number of ReCHits
JanGerritSchulz 36452aa
change default for Phase2 CA extension to requiring quadruplets to ha…
JanGerritSchulz ac549e8
Apply improved CA cuts for regular and extend configurations
JanGerritSchulz f40a01f
Change effect of useCAExtension flag in PixelTrack converter to inclu…
JanGerritSchulz 1b60dae
Unify CA cuts for min/max inner/outer r/z based on the type of layer …
JanGerritSchulz f71bbb4
Remove OT recHits conversion from sequences without CA extension
Parsifal-2045 fc18bbf
Restructure Phase2 PixelTracking configuration and ngtScouting modifier
mmusich 58af36a
Fix isOuterLadder of CA PixelDoubletAlgo for Phase-2
JanGerritSchulz e832f28
Make Patatrack Pixel Tracking the default for Phase2
JanGerritSchulz 3177402
Simplify isPh2Pixel check
Parsifal-2045 ba94208
allow SingleMuPt15Eta0p_0p4 configuration fragment for NGT scouting w…
mmusich 1db267f
Add CA Extension workflows to ph2_hlt short matrix and IB matrix
Parsifal-2045 f9bd845
Add customization of HLT Run3 for new CA cuts introduced in CA exten…
JanGerritSchulz 810ed2d
restructure HLTPhase2PixelTracksAndVerticesSequence for vertex trimmi…
mmusich 6754585
Improve PixelTrack selection settings for non-extended CA in Phase-2
JanGerritSchulz 90e87ed
Remove printouts and cleanup PixelTrack converter from SoA
JanGerritSchulz 4ef5585
Rename maxChi2Quadruplets in Pixel Tracking to maxChi2TripletsOrQuadr…
JanGerritSchulz f96a0a7
Add column types to SoA descriptor
Parsifal-2045 8b1026d
Fix check-by-index for scalar in recHits SoA
Parsifal-2045 1ffe2c6
Remove unecessary loop and alpaka::memcpy
Parsifal-2045 e79b668
Change back max pT for multiple scattering in BrokenLinFit
JanGerritSchulz d6d9f0d
Set max number of modules in ClusteringConstants to the actual number…
JanGerritSchulz eb576a6
Improve CA and SimplePixelTopology
JanGerritSchulz 291918e
Update SoA view accessors in CA OT RecHit converter chain
JanGerritSchulz a0e0b7c
Introduce phase2LegacyPixelTracks procModifier to enable the usage of…
JanGerritSchulz a0b7c14
Simplify usage of +1 in merging hitModuleStart SoAs
Parsifal-2045 9e62c1e
Improve function getNSkippedLayer in PixelTrackProducerFromSoAAlpaka
JanGerritSchulz 7b08d55
Reset modules' maps and indices in beginRun
Parsifal-2045 456bf55
add phase2CAExtension to the list of modifiers used to run HLT OT Rec…
mmusich daef64b
addition of offline Patatrack workflow for Phase2 CA extension with OT
mmusich 772af6e
Let the framework handle host to device copies
Parsifal-2045 262716c
Correctly handle skipped tracks when converting SoA to Legacy
Parsifal-2045 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,4 @@ | ||
| import FWCore.ParameterSet.Config as cms | ||
|
|
||
| # This modifier is for running ngt scouting menu validation | ||
|
|
||
| # This modifier is for running ngt scouting menu | ||
| ngtScouting = cms.Modifier() |
4 changes: 4 additions & 0 deletions
4
Configuration/ProcessModifiers/python/phase2CAExtension_cff.py
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| import FWCore.ParameterSet.Config as cms | ||
|
|
||
| # This modifiers enables the extension of the Pixel CA algorithm to the first 3 layers of the Outer Tracker | ||
| phase2CAExtension = cms.Modifier() |
4 changes: 4 additions & 0 deletions
4
Configuration/ProcessModifiers/python/phase2LegacyPixelTracks_cff.py
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| import FWCore.ParameterSet.Config as cms | ||
|
|
||
| # This modifiers reverts the Pixel Tracking in the HLT Phase-2 to the Legacy algorithm from Run-2 | ||
| phase2LegacyPixelTracks = cms.Modifier() |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.