RunRecordStream.h
Go to the documentation of this file.
1 #ifndef GAUDISVC_PERSISTENCYSVC_RUNRECORDSTREAM_H
2 #define GAUDISVC_PERSISTENCYSVC_RUNRECORDSTREAM_H
3 
4 // Required for inheritance
5 #include "OutputStream.h"
6 
13 class RunRecordStream : public OutputStream {
14 public:
16  RunRecordStream(const std::string& nam, ISvcLocator* svc) : OutputStream(nam,svc) {}
18  ~RunRecordStream() override = default;
20  StatusCode execute() override { return StatusCode::SUCCESS; }
22  StatusCode finalize() override;
23 };
24 
25 #endif // GAUDISVC_PERSISTENCYSVC_OUPUTFSRSTREAM_H
The ISvcLocator is the interface implemented by the Service Factory in the Application Manager to loc...
Definition: ISvcLocator.h:25
StatusCode execute() override
Runrecords do not get written for each event: Event processing hence dummy....
A small to stream Data I/O.
Definition: OutputStream.h:29
STL class.
RunRecordStream(const std::string &nam, ISvcLocator *svc)
Standard algorithm Constructor.
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:26
Extension of OutputStream to write run records after last event.
~RunRecordStream() override=default
Standard Destructor.
StatusCode finalize() override
Algorithm overload: finalization.