Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
LHCb
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
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
LHCb
LHCb
Commits
24759258
Commit
24759258
authored
1 year ago
by
Maarten Van Veghel
Browse files
Options
Downloads
Patches
Plain Diff
consistent defaults
parent
a77f8880
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!4127
split track containers and persistency (versioning)
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
GaudiConf/python/GaudiConf/LbExec/options.py
+1
-1
1 addition, 1 deletion
GaudiConf/python/GaudiConf/LbExec/options.py
PyConf/python/PyConf/packing.py
+9
-6
9 additions, 6 deletions
PyConf/python/PyConf/packing.py
with
10 additions
and
7 deletions
GaudiConf/python/GaudiConf/LbExec/options.py
+
1
−
1
View file @
24759258
...
...
@@ -126,7 +126,7 @@ class Options(BaseModel):
input_raw_format
:
float
=
0.5
input_process
:
Optional
[
InputProcessTypes
]
=
None
input_manifest_file
:
Optional
[
str
]
=
None
persistency_locations_version
:
Optional
[
str
]
=
None
persistency_locations_version
:
str
=
""
xml_file_catalog
:
Optional
[
str
]
=
None
evt_max
:
int
=
-
1
first_evt
:
int
=
0
...
...
This diff is collapsed.
Click to expand it.
PyConf/python/PyConf/packing.py
+
9
−
6
View file @
24759258
...
...
@@ -16,13 +16,13 @@ from PyConf import configurable
from
PyConf.persistency_locations
import
(
reco_locations
as
_reco_locations
,
pp2mcp_locations
as
_pp2mcp_locations
)
_default_persiste
d
_locations
=
{
_default_persist
abl
e_locations
=
{
v
:
{
k
:
cfg
[
0
]
for
k
,
cfg
in
locs
.
items
()}
for
v
,
locs
in
_reco_locations
.
items
()
}
_default_persiste
d
_pp2mcp_locations
=
{
_default_persist
abl
e_pp2mcp_locations
=
{
k
:
v
[
0
]
for
k
,
v
in
_pp2mcp_locations
.
items
()
}
...
...
@@ -60,14 +60,17 @@ def pp2mcp_locations(stream="/Event/HLT2"):
@configurable
def
default_persisted_locations
(
locations
=
_default_persisted_locations
,
stream
=
"
/Event
"
,
version
=
latest_persistency_locations_version
):
def
default_persistable_locations
(
locations
=
_default_persistable_locations
,
stream
=
"
/Event
"
,
version
=
latest_persistency_locations_version
):
return
{
k
:
prefix
(
v
,
stream
)
for
k
,
v
in
locations
[
version
()].
items
()}
@configurable
def
persisted_location
(
k
,
force
=
True
,
locations
=
default_persisted_locations
()):
def
persistable_location
(
k
,
force
=
True
,
locations
=
default_persistable_locations
()):
return
force_location
(
locations
[
k
])
if
force
else
None
...
...
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