The Gaudi Framework  master (82fdf313)
Loading...
Searching...
No Matches
RecordStream.h
Go to the documentation of this file.
1/***********************************************************************************\
2* (c) Copyright 1998-2025 CERN for the benefit of the LHCb and ATLAS collaborations *
3* *
4* This software is distributed under the terms of the Apache version 2 licence, *
5* copied verbatim in the file "LICENSE". *
6* *
7* In applying this licence, CERN does not waive the privileges and immunities *
8* granted to it by virtue of its status as an Intergovernmental Organization *
9* or submit itself to any jurisdiction. *
10\***********************************************************************************/
11#pragma once
12
13// Required for inheritance
14#include "OutputStream.h"
15
22class RecordStream : public OutputStream {
23public:
25 RecordStream( const std::string&, ISvcLocator* );
27 StatusCode execute() override { return StatusCode::SUCCESS; }
29 StatusCode finalize() override;
30};
The ISvcLocator is the interface implemented by the Service Factory in the Application Manager to loc...
Definition ISvcLocator.h:42
A small to stream Data I/O.
StatusCode execute() override
Runrecords do not get written for each event: Event processing hence dummy....
StatusCode finalize() override
Algorithm overload: finalization.
RecordStream(const std::string &, ISvcLocator *)
Standard algorithm Constructor.
This class is used for returning status codes from appropriate routines.
Definition StatusCode.h:64
constexpr static const auto SUCCESS
Definition StatusCode.h:99