-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
Displaced regional tracking iteration #40643
Merged
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
fd00eb2
Added a new EXO regional tracking iteration.
aehart d4512b0
Added DisplacedRegionalStep for testing.
aehart faf4bc8
Added a workflow for displacedRegional.
aehart d7aaa18
Pass the trackCluster pointer directly.
aehart 16e8a80
Made private members const.
aehart a82f39b
Added parameter for defining inner and outer tracks.
aehart 8382c92
Code format.
aehart 2d270ae
Just use default destructor.
aehart dfd2135
Use Python boolean directly.
aehart 3a5763c
No need for extra if statement.
aehart 147eb78
Calculate sigmaDistMagXY only if needed.
aehart 98a11b8
Updated offset to 0.701.
aehart 7b74c03
Fixed bug with threshold and only compute cxPtR2 once.
aehart a37a412
Fixed name of process modifier.
aehart 67a2dd1
Moved DisplacedVertexCluster files into plugins/.
aehart 5fbe7f9
Cleaned up BuildFile.
aehart 50204a8
Dropped TOB1+TOB2+MTOB4.
aehart e9985f4
Removed deprecated "thread pool" argument.
aehart 2df7a27
Made nThreads an untracked parameter.
aehart ab227d6
Added near and far threshold parameters.
aehart 5dbcab5
Current best config file.
aehart 31c32bd
Updated interface to tensorflow.
aehart 26259b0
Moved RecoPixelVertexing subsystem to RecoTracker.
aehart 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
5 changes: 5 additions & 0 deletions
5
Configuration/ProcessModifiers/python/displacedRegionalTracking_cff.py
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
# This modifier is for activating displacedRegionalStep step for phase1 tracking | ||
|
||
displacedRegionalTracking = cms.Modifier() |
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
4 changes: 4 additions & 0 deletions
4
Configuration/ProcessModifiers/python/trackingMkFitDisplacedRegionalStep_cff.py
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
# This modifier sets replaces the default pattern recognition with mkFit for displacedRegionalStep | ||
trackingMkFitDisplacedRegionalStep = cms.Modifier() | ||
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
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
10 changes: 10 additions & 0 deletions
10
RecoTracker/DisplacedRegionalTracking/plugins/BuildFile.xml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<use name="DataFormats/BeamSpot"/> | ||
<use name="DataFormats/Candidate"/> | ||
<use name="DataFormats/Common"/> | ||
<use name="DataFormats/Math"/> | ||
<use name="DataFormats/VertexReco"/> | ||
<use name="FWCore/Framework"/> | ||
<use name="FWCore/ParameterSet"/> | ||
<use name="FWCore/Utilities"/> | ||
<use name="PhysicsTools/TensorFlow"/> | ||
<flags EDM_PLUGIN="1"/> |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please add this in
Configuration/ProcessModifiers/python/trackingMkFitDevel_cff.py
for regular testingThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.