Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
atlas
athena
Merge requests
!70746
Simpler configs for ACTS TF and Ambi
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Simpler configs for ACTS TF and Ambi
cvarni/athena:TrackFindingJOupdates
into
main
Overview
12
Commits
8
Pipelines
5
Changes
1
Merged
Carlo Varni
requested to merge
cvarni/athena:TrackFindingJOupdates
into
main
11 months ago
Overview
12
Commits
8
Pipelines
5
Changes
1
Expand
Few changes to the JO to make the configuration simpler and cleaner
/cc
@adye
and
@tbold
Edited
11 months ago
by
Carlo Varni
1
0
Merge request reports
Viewing commit
81e4a998
Prev
Next
Show latest version
1 file
+
3
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
81e4a998
forgot the flags
· 81e4a998
Carlo Varni
authored
11 months ago
Tracking/Acts/ActsConfig/python/ActsTrackFindingConfig.py
+
3
−
3
Options
@@ -157,9 +157,9 @@ def ActsTrackFindingCfg(flags,
kwargs
.
setdefault
(
'
ACTSTracksLocation
'
,
f
"
{
flags
.
Tracking
.
ActiveConfig
.
extension
}
Tracks
"
)
if
flags
.
Tracking
.
ActiveConfig
.
extension
==
"
ActsConversion
"
:
kwargs
.
setdefault
(
'
SeedLabels
'
,
isdet
(
strip
=
[
"
SSS
"
]))
kwargs
.
setdefault
(
'
EstimatedTrackParametersKeys
'
,
isdet
(
strip
=
[
"
ActsConversionStripEstimatedTrackParams
"
]))
kwargs
.
setdefault
(
'
SeedContainerKeys
'
,
isdet
(
strip
=
[
"
ActsConversionStripSeeds
"
]))
kwargs
.
setdefault
(
'
SeedLabels
'
,
isdet
(
flags
,
strip
=
[
"
SSS
"
]))
kwargs
.
setdefault
(
'
EstimatedTrackParametersKeys
'
,
isdet
(
flags
,
strip
=
[
"
ActsConversionStripEstimatedTrackParams
"
]))
kwargs
.
setdefault
(
'
SeedContainerKeys
'
,
isdet
(
flags
,
strip
=
[
"
ActsConversionStripSeeds
"
]))
kwargs
.
setdefault
(
'
UncalibratedMeasurementContainerKeys
'
,
isdet
(
flags
,
pixel
=
[
"
ITkPixelClusters_InView
"
],
strip
=
[
"
ITkConversionStripClusters_InView
"
])
if
flags
.
Acts
.
useCache
else
isdet
(
flags
,
pixel
=
[
"
ITkPixelClusters
"
],
strip
=
[
"
ITkConversionStripClusters
"
]))
else
:
kwargs
.
setdefault
(
'
SeedLabels
'
,
isdet
(
flags
,
pixel
=
[
"
PPP
"
],
strip
=
[
"
SSS
"
])
if
not
flags
.
Tracking
.
doITkFastTracking
else
isdet
(
pixel
=
[
"
PPP
"
]))
Loading