Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Gaudi
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
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
Gaudi
Gaudi
Merge requests
!1550
Draft: GaudiConfig2: port utils.py from Gaussino
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Draft: GaudiConfig2: port utils.py from Gaussino
admorris/Gaudi:admorris_gc2_utils
into
master
Overview
6
Commits
2
Pipelines
2
Changes
1
Open
Adam Morris
requested to merge
admorris/Gaudi:admorris_gc2_utils
into
master
1 year ago
Overview
6
Commits
2
Pipelines
2
Changes
1
Expand
0
0
Merge request reports
Compare
master
version 1
0dc4f595
1 year ago
master (HEAD)
and
latest version
latest version
0e2b781a
2 commits,
1 year ago
version 1
0dc4f595
1 commit,
1 year ago
1 file
+
84
−
0
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
GaudiConfiguration/python/GaudiConfig2/utils.py
0 → 100644
+
84
−
0
Options
#####################################################################################
# (c) Copyright 1998-2024 CERN for the benefit of the LHCb and ATLAS collaborations #
# #
# This software is distributed under the terms of the Apache version 2 licence, #
# copied verbatim in the file "LICENSE". #
# #
# In applying this licence, CERN does not waive the privileges and immunities #
# granted to it by virtue of its status as an Intergovernmental Organization #
# or submit itself to any jurisdiction. #
#####################################################################################
__author__
=
"
Adam Morris
"
__email__
=
"
lhcb-simulation@cern.ch
"
from
GaudiConfig2
import
Configurables
as
C
from
GaudiConfig2._configurables
import
ConfigurableMeta
# for type-hinting
from
GaudiKernel.GaudiHandles
import
PrivateToolHandle
# FIXME: Michal M.: moved from old SimUtils,
# it is too convoluted and probably buggy...
def
get_set_configurable
(
parent
:
ConfigurableMeta
,
propertyname
:
str
,
value
:
str
=
""
)
->
ConfigurableMeta
:
if
value
==
""
:
propertyvalue
=
getattr
(
parent
,
propertyname
)
try
:
objectname
=
propertyvalue
.
getType
()
propertyvalue_short
=
propertyvalue
.
getName
()
except
:
try
:
propertyvalue_short
=
propertyvalue
.
split
(
"
/
"
)[
-
1
]
objectname
=
propertyvalue
.
split
(
"
/
"
)[
0
]
except
:
pass
else
:
setattr
(
parent
,
propertyname
,
value
)
propertyvalue_short
=
value
.
split
(
"
/
"
)[
-
1
]
objectname
=
value
.
split
(
"
/
"
)[
0
]
propertyvalue_short
=
propertyvalue_short
.
split
(
"
.
"
)[
-
1
]
objectname
=
objectname
.
replace
(
"
::
"
,
"
__
"
)
if
not
hasattr
(
parent
,
propertyvalue_short
):
conf
=
getattr
(
C
,
objectname
)
# child = parent.addTool(conf, propertyvalue_short)
child
=
conf
(
"
.
"
.
join
([
parent
.
name
,
propertyvalue_short
]))
else
:
child
=
getattr
(
parent
,
propertyvalue_short
)
return
child
def
add_tool
(
parent
:
ConfigurableMeta
,
tool
:
str
)
->
ConfigurableMeta
:
tool_class
=
tool
.
split
(
"
/
"
)[
0
].
replace
(
"
::
"
,
"
__
"
)
tool_name
=
tool
.
split
(
"
/
"
)[
-
1
].
split
(
"
.
"
)[
-
1
]
conf
=
getattr
(
C
,
tool_class
)
child
=
conf
(
"
.
"
.
join
([
parent
.
name
,
tool_name
]))
return
child
def
configure_tool
(
tool
:
ConfigurableMeta
,
tool_opts
:
dict
):
for
key
,
value
in
tool_opts
.
items
():
setattr
(
tool
,
key
,
value
)
def
extract_handles
(
parent
:
ConfigurableMeta
)
->
list
[
ConfigurableMeta
]:
handles
=
[]
for
key
,
value
in
parent
.
getDefaultProperties
().
items
():
# TODO: other classes in GaudiKernel.GaudiHandles but not necessarily all of them
if
isinstance
(
value
,
PrivateToolHandle
):
try
:
handles
+=
[
get_set_configurable
(
parent
,
key
)]
except
AttributeError
:
continue
return
handles
def
extract_all_handles
(
config
:
list
[
ConfigurableMeta
])
->
list
[
ConfigurableMeta
]:
handles
=
[]
all_names
=
[
i
.
name
for
i
in
config
]
for
c
in
config
:
for
h
in
extract_handles
(
c
):
if
h
.
name
not
in
all_names
:
handles
+=
[
h
]
return
handles
Loading