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
!42448
Update Digi config for CA-based Transforms
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Update Digi config for CA-based Transforms
nstyles/athena:master-digiConfigUpdate
into
master
Overview
7
Commits
2
Pipelines
1
Changes
1
Merged
Nicholas Styles
requested to merge
nstyles/athena:master-digiConfigUpdate
into
master
4 years ago
Overview
7
Commits
2
Pipelines
1
Changes
1
Expand
Change
Geometry
to
Enable
in the flags that get set according to the ``Detectors``` specified
Add ITk detectors to the possibilities for Digitization
cc
@jchapman
@tadej
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
4b89fc43
2 commits,
4 years ago
1 file
+
3
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Simulation/Digitization/python/DigitizationParametersConfig.py
+
3
−
3
Options
# Copyright (C) 2002-202
0
CERN for the benefit of the ATLAS collaboration
# Copyright (C) 2002-202
1
CERN for the benefit of the ATLAS collaboration
from
AthenaKernel.EventIdOverrideConfig
import
getMinMaxRunNumbers
from
AthenaCommon.Logging
import
logging
@@ -51,8 +51,8 @@ def writeDigitizationMetadata(ConfigFlags):
## Digitized detector flags: add each enabled detector to the DigitizedDetectors list - might be better to determine this from the OutputStream or CA-itself? Possibly redundant info though?
digiDets
=
[]
for
det
in
[
'
Pixel
'
,
'
SCT
'
,
'
TRT
'
,
'
BCM
'
,
'
Lucid
'
,
'
ZDC
'
,
'
ALFA
'
,
'
AFP
'
,
'
FwdRegion
'
,
'
LAr
'
,
'
HGTD
'
,
'
Tile
'
,
'
MDT
'
,
'
CSC
'
,
'
TGC
'
,
'
RPC
'
,
'
MM
'
,
'
sTGC
'
,
'
Truth
'
,
'
LVL1
'
]:
attrname
=
"
Detector.
Geometry
"
+
det
for
det
in
[
'
Pixel
'
,
'
SCT
'
,
'
TRT
'
,
'
BCM
'
,
'
Lucid
'
,
'
ZDC
'
,
'
ALFA
'
,
'
AFP
'
,
'
FwdRegion
'
,
'
LAr
'
,
'
HGTD
'
,
'
Tile
'
,
'
MDT
'
,
'
CSC
'
,
'
TGC
'
,
'
RPC
'
,
'
MM
'
,
'
sTGC
'
,
'
Truth
'
,
'
LVL1
'
,
'
ITkPixel
'
,
'
ITkStrip
'
]:
attrname
=
"
Detector.
Enable
"
+
det
if
ConfigFlags
.
hasFlag
(
attrname
):
testValue
=
ConfigFlags
.
_get
(
attrname
)
if
testValue
:
Loading