ChimeraTK-DeviceAccess 03.25.00
Loading...
Searching...
No Matches
TransferElement.cc
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Deutsches Elektronen-Synchrotron DESY, MSK, ChimeraTK Project <chimeratk-support@desy.de>
2// SPDX-License-Identifier: LGPL-3.0-or-later
3#include "TransferElement.h"
4
5namespace ChimeraTK {
6
7 std::ostream& operator<<(std::ostream& os, const DataValidity& validity) {
8 if(validity == DataValidity::ok) {
9 os << "ok";
10 }
11 else {
12 os << "faulty";
13 }
14 return os;
15 }
16
17} // namespace ChimeraTK
std::ostream & operator<<(std::ostream &stream, const DataDescriptor::FundamentalType &fundamentalType)
DataValidity
The current state of the data.