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
eaaf2bb0
Commit
eaaf2bb0
authored
2 years ago
by
Gerhard Raven
Browse files
Options
Downloads
Patches
Plain Diff
do not load /Event/Rec/Summary automagically
parent
2386c5f6
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
PyConf/python/PyConf/application.py
+8
-1
8 additions, 1 deletion
PyConf/python/PyConf/application.py
with
8 additions
and
1 deletion
PyConf/python/PyConf/application.py
+
8
−
1
View file @
eaaf2bb0
...
...
@@ -892,7 +892,14 @@ def configure_input(options):
input_iohelper
=
IOHelper
(
options
.
input_type
,
options
.
output_type
or
None
)
# setupServices may create (the wrong) EventDataSvc, so do it first
extra_args
=
{
'
EvtStoreSvc
'
:
{
'
FollowAncestors
'
:
False
}}
# Old L(DST) may contain old 'unpacked' RecSummary -- which we don't
# want loaded automatically, as it is most likely out-of-sync with
# the reconstruction which gets unpacked from the DstData bank.
# If needed, it _may_ be possible (?) to still load it explicitly
# using FetchDataFromFile...
extra_args
=
{
'
EvtStoreSvc
'
:
{
'
FollowAncestors
'
:
False
,
'
InhibitedPathPrefixes
'
:[
'
/Event/Rec/Summary
'
]
},
'
HiveWhiteBoard
'
:{
'
InhibitPathes
'
:
[
'
/Event/Rec/Summary
'
]
}}
setup_component
(
options
.
event_store
,
instance_name
=
'
EventDataSvc
'
,
...
...
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