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
4da11fa9
Commit
4da11fa9
authored
2 years ago
by
Sebastien Ponce
Browse files
Options
Downloads
Patches
Plain Diff
Make /world the default path for DD4hep conditions when no ':' appears in the name
parent
e77c1fb7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!3785
Simplifies DD4hep code now that /world is the default path
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Det/LbDD4hep/include/LbDD4hep/ConditionAccessorHolder.h
+8
-5
8 additions, 5 deletions
Det/LbDD4hep/include/LbDD4hep/ConditionAccessorHolder.h
Det/LbDD4hep/src/DD4hepSvc.cpp
+9
-3
9 additions, 3 deletions
Det/LbDD4hep/src/DD4hepSvc.cpp
with
17 additions
and
8 deletions
Det/LbDD4hep/include/LbDD4hep/ConditionAccessorHolder.h
+
8
−
5
View file @
4da11fa9
...
...
@@ -108,12 +108,15 @@ namespace LHCb::Det::LbDD4hep {
protected
:
dd4hep
::
Condition
::
key_type
getKey
()
const
{
const
auto
colonPos
=
m_key
.
value
().
find_first_of
(
':'
);
if
(
colonPos
==
std
::
string
::
npos
)
{
throw
std
::
runtime_error
(
"Expected a ':' in condition key "
+
m_key
.
value
()
);
if
(
colonPos
!=
std
::
string
::
npos
)
{
auto
path
=
m_key
.
value
().
substr
(
0
,
colonPos
);
auto
hash
=
dd4hep
::
ConditionKey
::
itemCode
(
m_key
.
value
().
substr
(
colonPos
+
1
)
);
dd4hep
::
ConditionKey
::
KeyMaker
m
(
dd4hep
::
detail
::
hash32
(
path
),
hash
);
return
m
.
hash
;
}
auto
path
=
m_key
.
value
().
substr
(
0
,
colonPos
);
auto
hash
=
dd4hep
::
ConditionKey
::
itemCode
(
m_key
.
value
().
substr
(
colonPos
+
1
)
);
dd4hep
::
ConditionKey
::
KeyMaker
m
(
dd4hep
::
detail
::
hash32
(
path
),
hash
);
// otherwise default path is "/world"
dd4hep
::
ConditionKey
::
KeyMaker
m
(
dd4hep
::
detail
::
hash32
(
"/world"
),
dd4hep
::
ConditionKey
::
itemCode
(
m_key
.
value
()
)
);
return
m
.
hash
;
}
...
...
This diff is collapsed.
Click to expand it.
Det/LbDD4hep/src/DD4hepSvc.cpp
+
9
−
3
View file @
4da11fa9
...
...
@@ -44,8 +44,13 @@ namespace {
*/
dd4hep
::
Condition
::
key_type
makeKey
(
std
::
string
const
&
s
)
{
auto
colonPos
=
s
.
find_first_of
(
':'
);
auto
hi
=
dd4hep
::
ConditionKey
::
itemCode
(
s
.
substr
(
0
,
colonPos
)
);
auto
low
=
dd4hep
::
ConditionKey
::
itemCode
(
colonPos
==
std
::
string
::
npos
?
""
:
s
.
substr
(
colonPos
+
1
)
);
if
(
colonPos
!=
std
::
string
::
npos
)
{
auto
hi
=
dd4hep
::
ConditionKey
::
itemCode
(
s
.
substr
(
0
,
colonPos
)
);
auto
low
=
dd4hep
::
ConditionKey
::
itemCode
(
s
.
substr
(
colonPos
+
1
)
);
return
(
(
(
dd4hep
::
Condition
::
key_type
)
hi
)
<<
32
)
|
(
low
&
0xffffffff
);
}
auto
hi
=
dd4hep
::
ConditionKey
::
itemCode
(
"/world"
);
auto
low
=
dd4hep
::
ConditionKey
::
itemCode
(
s
);
return
(
(
(
dd4hep
::
Condition
::
key_type
)
hi
)
<<
32
)
|
(
low
&
0xffffffff
);
}
}
// namespace
...
...
@@ -209,7 +214,8 @@ namespace LHCb::Det::LbDD4hep {
auto
[
deName
,
condKey
]
=
LHCb
::
Detector
::
parseConditionIdentifier
(
output
);
auto
de
=
m_description
.
detector
(
std
::
string
{
deName
}
);
if
(
this
->
msgLevel
(
MSG
::
DEBUG
)
)
debug
()
<<
"Adding shared derivation for "
<<
output
<<
endmsg
;
if
(
this
->
msgLevel
(
MSG
::
DEBUG
)
)
debug
()
<<
"Adding shared derivation for "
<<
deName
<<
":"
<<
condKey
<<
endmsg
;
// Preparing the dependency to add
auto
dependency
=
std
::
make_unique
<
dd4hep
::
cond
::
ConditionDependency
>
(
de
,
std
::
string
{
condKey
},
...
...
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