Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue 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
Michael Donald Hank
athena
Commits
0c72b69b
Commit
0c72b69b
authored
1 month ago
by
Mark Hodgkinson
Committed by
Tadej Novak
1 month ago
Browse files
Options
Downloads
Patches
Plain Diff
Update usage of tracking convertors in PFlow Config
Update usage of tracking convertors in PFlow Config
parent
563bda28
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Reconstruction/PFlow/PFlowUtils/python/configureRecoForPFlow.py
+0
-5
0 additions, 5 deletions
...truction/PFlow/PFlowUtils/python/configureRecoForPFlow.py
Reconstruction/eflowRec/python/PFRun3Config.py
+6
-1
6 additions, 1 deletion
Reconstruction/eflowRec/python/PFRun3Config.py
with
6 additions
and
6 deletions
Reconstruction/PFlow/PFlowUtils/python/configureRecoForPFlow.py
+
0
−
5
View file @
0c72b69b
...
...
@@ -66,11 +66,6 @@ def configureRecoForPFlowCfg(cfgFlags):
metCA
.
addEventAlgo
(
getMETMakerAlg
(
'
AntiKt4EMPFlow
'
))
cfg
.
merge
(
metCA
)
#This is needed to ensure the convertor is correctly configured for each LHC period
#Otherwise a default convertor is provided that is not correctly configured for e.g Run4
from
TrkEventCnvTools.TrkEventCnvToolsConfig
import
TrkEventCnvSuperToolCfg
cfg
.
merge
(
TrkEventCnvSuperToolCfg
(
cfgFlags
))
#Add metadata data to xAOD such that we can run workflows such as creating physval.root
# from the output AOD or making ntuples from the output AOD
cfg
.
merge
(
configureMetaDataForPFlowCfg
(
cfgFlags
)
)
...
...
This diff is collapsed.
Click to expand it.
Reconstruction/eflowRec/python/PFRun3Config.py
+
6
−
1
View file @
0c72b69b
...
...
@@ -12,10 +12,15 @@ def PFFullCfg(inputFlags,runTauReco=False,**kwargs):
StoreGateSvc
=
CompFactory
.
StoreGateSvc
result
.
addService
(
StoreGateSvc
(
"
DetectorStore
"
))
#Alias calibrated topoclusters, if they exist already, such that overwrite won't f
i
al
#Alias calibrated topoclusters, if they exist already, such that overwrite won't fa
i
l
from
SGComps.AddressRemappingConfig
import
InputRenameCfg
result
.
merge
(
InputRenameCfg
(
"
xAOD::CaloClusterContainer
"
,
"
CaloCalTopoClusters
"
,
""
))
#This is needed to ensure the convertor is correctly configured for each LHC period
#Otherwise a default convertor is provided that is not correctly configured for e.g Run4
from
TrkEventCnvTools.TrkEventCnvToolsConfig
import
TrkEventCnvSuperToolCfg
result
.
merge
(
TrkEventCnvSuperToolCfg
(
inputFlags
))
#setup magnetic field service
from
MagFieldServices.MagFieldServicesConfig
import
AtlasFieldCacheCondAlgCfg
result
.
merge
(
AtlasFieldCacheCondAlgCfg
(
inputFlags
))
...
...
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