DFT-EFE
 
Loading...
Searching...
No Matches
ConditionalOStream.h
Go to the documentation of this file.
1/******************************************************************************
2 * Copyright (c) 2021. *
3 * The Regents of the University of Michigan and DFT-EFE developers. *
4 * *
5 * This file is part of the DFT-EFE code. *
6 * *
7 * DFT-EFE is free software: you can redistribute it and/or modify *
8 * it under the terms of the Lesser GNU General Public License as *
9 * published by the Free Software Foundation, either version 3 of *
10 * the License, or (at your option) any later version. *
11 * *
12 * DFT-EFE is distributed in the hope that it will be useful, but *
13 * WITHOUT ANY WARRANTY; without even the implied warranty *
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
15 * See the Lesser GNU General Public License for more details. *
16 * *
17 * You should have received a copy of the GNU Lesser General Public *
18 * License at the top level of DFT-EFE distribution. If not, see *
19 * <https://www.gnu.org/licenses/>. *
20 ******************************************************************************/
21
22/*
23 * @author Bikash Kanungo
24 */
25#ifndef dftefeConditionalOstream_h
26#define dftefeConditionalOstream_h
27
28#include <ostream>
29#include <utils/Defaults.h>
30#include <iomanip>
31
32//
33// ACKNOWLEDGEMENT: The implementation of this class is borrowed from deal.II
34//
35namespace dftefe
36{
37 namespace utils
38 {
47 {
48 public:
58 std::ostream & stream,
59 const bool active = true,
61
69 void
70 setCondition(const bool active);
71
79 bool
80 isActive() const;
81
87 std::ostream &
88 getOStream() const;
89
97 template <typename T>
98 const ConditionalOStream &
99 operator<<(const T &t) const;
100
111 const ConditionalOStream &
112 operator<<(std::ostream &(*p)(std::ostream &)) const;
113
114 private:
115 std::ostream &d_outputStream;
117 }; // end of class ConditionalOStream
118
119 } // end of namespace utils
120} // end of namespace dftefe
121
123#endif // dftefeConditionalOstream_h
static const size_type PRECISION
Definition: Defaults.h:133
Provides an interface to print based on whether a certain condition is met or not....
Definition: ConditionalOStream.h:47
const ConditionalOStream & operator<<(const T &t) const
Overload the insertion or << operator.
Definition: ConditionalOStream.t.cpp:35
void setCondition(const bool active)
Function to set the condition for printing to the output stream associated with this object.
Definition: ConditionalOStream.cpp:44
bool d_activeFlag
Definition: ConditionalOStream.h:116
std::ostream & getOStream() const
Function that returns the underlying ostream object associated with this object.
Definition: ConditionalOStream.cpp:56
bool isActive() const
Function that returns true if printing to the output stream associated with this object is allowed.
Definition: ConditionalOStream.cpp:50
std::ostream & d_outputStream
Definition: ConditionalOStream.h:115
dealii includes
Definition: AtomFieldDataSpherical.cpp:31
unsigned int size_type
Definition: TypeConfig.h:8