Loading [MathJax]/extensions/tex2jax.js
The Gaudi Framework  master (d98a2936)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
RunRecordStream.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 
22 class RunRecordStream : public OutputStream {
23 public:
25  RunRecordStream( const std::string& nam, ISvcLocator* svc ) : OutputStream( nam, svc ) {}
27  StatusCode execute() override { return StatusCode::SUCCESS; }
29  StatusCode finalize() override;
30 };
OutputStream
A small to stream Data I/O.
Definition: OutputStream.h:37
ISvcLocator
Definition: ISvcLocator.h:42
RunRecordStream::RunRecordStream
RunRecordStream(const std::string &nam, ISvcLocator *svc)
Standard algorithm Constructor.
Definition: RunRecordStream.h:25
RunRecordStream::execute
StatusCode execute() override
Runrecords do not get written for each event: Event processing hence dummy....
Definition: RunRecordStream.h:27
StatusCode
Definition: StatusCode.h:64
RunRecordStream
Definition: RunRecordStream.h:22
StatusCode::SUCCESS
constexpr static const auto SUCCESS
Definition: StatusCode.h:99
RunRecordStream::finalize
StatusCode finalize() override
Algorithm overload: finalization.
Definition: RunRecordStream.cpp:24
OutputStream.h