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
!1432
Always write output files
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Always write output files
lhcb/Gaudi:always-write-output
into
master
Overview
8
Commits
1
Pipelines
8
Changes
3
Merged
Chris Burr
requested to merge
lhcb/Gaudi:always-write-output
into
master
2 years ago
Overview
5
Commits
1
Pipelines
8
Changes
3
Expand
Still needs a test adding.
Part of
lhcb/LHCb#295 (closed)
Edited
2 years ago
by
Marco Clemencic
0
0
Merge request reports
Compare
master
version 6
183f0e70
2 years ago
version 5
43e15b7b
2 years ago
version 4
9249d525
2 years ago
version 3
5859178f
2 years ago
version 2
336fd604
2 years ago
version 1
5e77b450
2 years ago
master (base)
and
latest version
latest version
adc807ee
1 commit,
2 years ago
version 6
183f0e70
6 commits,
2 years ago
version 5
43e15b7b
6 commits,
2 years ago
version 4
9249d525
5 commits,
2 years ago
version 3
5859178f
5 commits,
2 years ago
version 2
336fd604
4 commits,
2 years ago
version 1
5e77b450
1 commit,
2 years ago
3 files
+
62
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
GaudiCommonSvc/src/PersistencySvc/OutputStream.cpp
+
9
−
1
Options
/***********************************************************************************\
* (c) Copyright 1998-20
19
CERN for the benefit of the LHCb and ATLAS collaborations *
* (c) Copyright 1998-20
23
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". *
@@ -42,6 +42,13 @@ namespace {
}
}
// namespace
StatusCode
OutputStream
::
start
()
{
return
Algorithm
::
start
().
andThen
(
[
this
]()
{
// Open the output file now to ensure it is always written even if empty
return
m_pConversionSvc
->
connectOutput
(
m_outputName
,
m_outputType
);
}
);
}
// initialize data writer
StatusCode
OutputStream
::
initialize
()
{
@@ -126,6 +133,7 @@ StatusCode OutputStream::initialize() {
m_acceptNames
.
useUpdateHandler
();
m_requireNames
.
useUpdateHandler
();
m_vetoNames
.
useUpdateHandler
();
return
StatusCode
::
SUCCESS
;
}
Loading