Loading [MathJax]/extensions/tex2jax.js
The Gaudi Framework  v31r0 (aeb156f0)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
RecordStream.h
Go to the documentation of this file.
1 #ifndef GAUDISVC_PERSISTENCYSVC_RECORDSTREAM_H
2 #define GAUDISVC_PERSISTENCYSVC_RECORDSTREAM_H
3 
4 // Required for inheritance
5 #include "OutputStream.h"
6 
13 class RecordStream : public OutputStream {
14 public:
18  StatusCode execute() override { return StatusCode::SUCCESS; }
20  StatusCode finalize() override;
21 };
22 
23 #endif // GAUDISVC_PERSISTENCYSVC_RECORDSTREAM_H
The ISvcLocator is the interface implemented by the Service Factory in the Application Manager to loc...
Definition: ISvcLocator.h:25
constexpr static const auto SUCCESS
Definition: StatusCode.h:85
Extension of OutputStream to write run records after last event.
Definition: RecordStream.h:13
A small to stream Data I/O.
Definition: OutputStream.h:28
STL class.
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:50
StatusCode execute() override
Runrecords do not get written for each event: Event processing hence dummy....
Definition: RecordStream.h:18
StatusCode finalize() override
Algorithm overload: finalization.
RecordStream(const std::string &, ISvcLocator *)
Standard algorithm Constructor.