File outputstream.h
File List > code_source > templat > include > TempLat > util > conditionaloutput > outputstream.h
Go to the documentation of this file
#ifndef TEMPLAT_UTIL_CONDITIONALOUTPUT_OUTPUTSTREAM_H
#define TEMPLAT_UTIL_CONDITIONALOUTPUT_OUTPUTSTREAM_H
/* This file is part of TempLat, available at https://cosmolattice.github.io/templat .
Copyright 2021-2026 The TempLat authors, see AUTHORS.md.
Released under the MIT license, see LICENSE.md. */
// File info: Main contributor(s): Adrien Florio, Year: 2019
#include "TempLat/util/conditionaloutput/conditionalfilestream.h"
namespace TempLat
{
template <typename R> class OutputStream : public ConditionalFileStream
{
public:
// Put public methods here. These should change very little over time.
OutputStream(const std::string &fname_, bool enabled_,
std::ios_base::openmode mode = std::ios_base::in | std::ios_base::out)
: ConditionalFileStream(fname_, enabled_, mode)
{
}
void savetxt() { (*this) << "\n"; }
template <typename T, typename... Args> void savetxt(T t, Args... args)
{
(*this) << static_cast<R>(t) << " ";
savetxt(args...);
}
private:
/* Put all member variables and private methods here. These may change arbitrarily. */
};
} // namespace TempLat
#endif