Branch data Line data Source code
1 : : // ***************************************************************************** 2 : : /*! 3 : : \file src/IO/DiagWriter.hpp 4 : : \copyright 2012-2015 J. Bakosi, 5 : : 2016-2018 Los Alamos National Security, LLC., 6 : : 2019-2021 Triad National Security, LLC. 7 : : All rights reserved. See the LICENSE file for details. 8 : : \brief Text diagnostics writer declaration 9 : : \details This file declares the ASCII diagnostics writer class that 10 : : facilitates outputing diagnostics to text files. 11 : : */ 12 : : // ***************************************************************************** 13 : : #ifndef DiagWriter_h 14 : : #define DiagWriter_h 15 : : 16 : : #include <string> 17 : : #include <vector> 18 : : #include <fstream> 19 : : 20 : : #include "Types.hpp" 21 : : #include "Writer.hpp" 22 : : #include "Keywords.hpp" 23 : : #include "Options/TxtFloatFormat.hpp" 24 : : 25 : : namespace tk { 26 : : 27 : : //! \brief DiagWriter : tk::Writer 28 : : //! \details ASCII diagnostics writer class that facilitates outputing 29 : : //! diagnostics to text files. 30 [ - + ]: 5728 : class DiagWriter : public tk::Writer { 31 : : 32 : : public: 33 : : //! Constructor 34 : : explicit DiagWriter( 35 : : const std::string& filename, 36 : : tk::ctr::TxtFloatFormatType format = tk::ctr::TxtFloatFormatType::DEFAULT, 37 : : kw::precision::info::expect::type precision = std::cout.precision(), 38 : : std::ios_base::openmode mode = std::ios_base::out ); 39 : : 40 : : //! Write out diagnostics file header 41 : : void header( const std::vector< std::string >& name ) const; 42 : : 43 : : //! Write diagnostics file 44 : : std::size_t diag( uint64_t it, 45 : : tk::real t, 46 : : tk::real dt, 47 : : const std::vector< tk::real >& diagnostics ); 48 : : 49 : : //! Precision accessor 50 : : int prec() const { return m_precision; } 51 : : 52 : : private: 53 : : int m_precision; //!< Floating-point precision in digits 54 : : int m_width; //!< Floating-point number width 55 : : }; 56 : : 57 : : } // tk:: 58 : : 59 : : #endif // DiagWriter_h