Skip to content
Snippets Groups Projects
Commit b40ba7dd authored by scott snyder's avatar scott snyder Committed by scott snyder
Browse files

AthenaKernel: Add IAthenaOutputTool::preStream()

Add abstract method IAthenaOutputTool::preStream().
To be called just before streaming objects.
parent 1a7b4478
No related branches found
No related tags found
No related merge requests found
/*
Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
*/
#ifndef ATHENAKERNEL_IATHENAOUTPUTTOOL_H
......@@ -27,6 +27,8 @@ public:
virtual StatusCode postInitialize() = 0;
/// Called at the beginning of execute
virtual StatusCode preExecute() = 0;
/// Called before actually streaming objects.
virtual StatusCode preStream() = 0;
/// Called at the end of execute
virtual StatusCode postExecute() = 0;
/// Called at the beginning of finalize
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment