Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
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
Beojan Stanislaus
athena
Commits
f99faaaa
Commit
f99faaaa
authored
3 years ago
by
Thomas Strebler
Committed by
Walter Lampl
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Update RecoSteering for Upgrade Tracking
parent
ec6eff2a
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
InnerDetector/InDetConfig/python/ITkConfigFlags.py
+1
-1
1 addition, 1 deletion
InnerDetector/InDetConfig/python/ITkConfigFlags.py
Reconstruction/RecJobTransforms/python/RecoSteering.py
+8
-12
8 additions, 12 deletions
Reconstruction/RecJobTransforms/python/RecoSteering.py
with
9 additions
and
13 deletions
InnerDetector/InDetConfig/python/ITkConfigFlags.py
+
1
−
1
View file @
f99faaaa
...
...
@@ -39,7 +39,7 @@ def createITkConfigFlags():
itkcf
.
addFlag
(
"
ITk.doITkConversionFinding
"
,
True
)
# Turn running of doITkConversionFinding second pass on and off
itkcf
.
addFlag
(
"
ITk.doITkLargeD0
"
,
False
)
itkcf
.
addFlag
(
"
ITk.storeSeparateLargeD0Container
"
,
False
)
itkcf
.
addFlag
(
"
ITk.doBremRecovery
"
,
Tru
e
)
# Turn on running of Brem Recover in tracking
itkcf
.
addFlag
(
"
ITk.doBremRecovery
"
,
Fals
e
)
# Turn on running of Brem Recover in tracking
itkcf
.
addFlag
(
"
ITk.doCaloSeededBrem
"
,
True
)
# Brem Recover in tracking restricted to Calo ROIs
itkcf
.
addFlag
(
"
ITk.doHadCaloSeededSSS
"
,
False
)
# Use Recover SSS to Calo ROIs
itkcf
.
addFlag
(
"
ITk.doCaloSeededAmbi
"
,
False
)
# Use Calo ROIs to seed specific cuts for the ambi
...
...
This diff is collapsed.
Click to expand it.
Reconstruction/RecJobTransforms/python/RecoSteering.py
+
8
−
12
View file @
f99faaaa
...
...
@@ -29,9 +29,14 @@ def RecoSteering(flags):
acc
.
merge
(
CaloRecoCfg
(
flags
,
doLCCalib
=
True
))
log
.
info
(
"
---------- Configured calorimeter reconstruction
"
)
# ID
from
InDetConfig.TrackRecoConfig
import
TrackRecoCfg
acc
.
merge
(
TrackRecoCfg
(
flags
))
# ID / ITk
if
flags
.
Detector
.
GeometryID
:
from
InDetConfig.TrackRecoConfig
import
TrackRecoCfg
acc
.
merge
(
TrackRecoCfg
(
flags
))
elif
flags
.
Detector
.
GeometryITk
:
from
InDetConfig.ITkTrackRecoConfig
import
ITkTrackRecoCfg
acc
.
merge
(
ITkTrackRecoCfg
(
flags
))
return
acc
#stop here for now with ITk
log
.
info
(
"
---------- Configured tracking
"
)
# muons
...
...
@@ -103,15 +108,6 @@ def _run(input):
#TODO these flags should be defaulted in the divier function above,
#TODO but then we ought to have option to set them from command line should the parser be passed there too?
flags
.
Detector
.
GeometryBCM
=
True
flags
.
Detector
.
GeometryDBM
=
True
flags
.
Detector
.
GeometryPixel
=
True
flags
.
Detector
.
GeometrySCT
=
True
flags
.
Detector
.
GeometryTRT
=
True
flags
.
Detector
.
GeometryTile
=
True
flags
.
Detector
.
GeometryLAr
=
True
flags
.
Calo
.
TopoCluster
.
doTopoClusterLocalCalib
=
False
flags
.
Output
.
ESDFileName
=
"
myESD.pool.root
"
flags
.
Output
.
AODFileName
=
"
myAOD.pool.root
"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment