Print on all processors of the default communicator. More...
#include <AMReX_Print.H>
Public Member Functions | |
AllPrint (std::ostream &os_=amrex::OutStream()) | |
Example: AllPrint() << " x = " << x << ' ';. More... | |
Public Member Functions inherited from amrex::Print | |
Print (std::ostream &os_=amrex::OutStream()) | |
Print on I/O Processor of the default communicator Example: Print() << " x = " << x << ' ';. More... | |
Print (int rank_, std::ostream &os_=amrex::OutStream()) | |
Print on all processors of the default communicator Example: Print(Print::AllProcs) << " x = " << x << ' ';. More... | |
Print (int rank_, MPI_Comm comm_, std::ostream &os_=amrex::OutStream()) | |
Print on process rank_ of communicator comm_ Example: Print(rank_, comm_) << " x = " << x << ' ';. More... | |
~Print () | |
Print (Print const &)=delete | |
Print (Print &&)=delete | |
Print & | operator= (Print const &)=delete |
Print & | operator= (Print &&)=delete |
Print & | SetPrecision (int p) |
template<typename T > | |
Print & | operator<< (const T &x) |
Print & | operator<< (std::basic_ostream< char, std::char_traits< char > > &(*func)(std::basic_ostream< char, std::char_traits< char > > &)) |
Additional Inherited Members | |
Static Public Attributes inherited from amrex::Print | |
static constexpr int | AllProcs = -1 |
Print on all processors of the default communicator.
|
inlineexplicit |
Example: AllPrint() << " x = " << x << '
';.