#include "InfoStream.h"Go to the source code of this file.
Classes | |
| class | datastream |
Defines | |
| #define | LOCALMOD(type) |
| #define | iFILE __FILE__<<'('<<__LINE__<<"): " |
| #define | iINFOF iINFO << iFILE |
| #define | iWARNF iWARN << iFILE |
| #define | iERRORF iERROR << iFILE |
| #define | iDEBUGF iDEBUG << iFILE |
Functions | |
| datastream & | operator<< (datastream &strm, const Vector &v1) |
| datastream & | operator<< (datastream &strm, const Tensor &t1) |
| datastream & | endd (datastream &s) |
Variables | |
| datastream | dout |
|
|
Definition at line 63 of file DataStream.h. |
|
|
Definition at line 62 of file DataStream.h. Referenced by PatchMap::registerPatch(), and ComputeMgr::updateComputes(). |
|
|
Definition at line 59 of file DataStream.h. Referenced by LdbCoordinator::initialize(), LdbCoordinator::LdbCoordinator(), PatchMgr::PatchMgr(), and Sync::Sync(). |
|
|
Definition at line 60 of file DataStream.h. |
|
|
Definition at line 61 of file DataStream.h. |
|
|
Value: datastream& operator<<(type x) \ { (std::ostream&)(*this) << x; return(*this); } Definition at line 30 of file DataStream.h. |
|
|
modifiers * Definition at line 57 of file DataStream.h. References datastream::endd(). 00057 { s.endd(); return s; }
|
|
||||||||||||
|
Definition at line 30 of file DataStream.C. References Tensor::xx, Tensor::xy, Tensor::xz, Tensor::yx, Tensor::yy, Tensor::yz, Tensor::zx, Tensor::zy, and Tensor::zz. 00030 {
00031 strm << t1.xx << " " << t1.xy << " " << t1.xz << " "
00032 << t1.yx << " " << t1.yy << " " << t1.yz << " "
00033 << t1.zx << " " << t1.zy << " " << t1.zz;
00034 return strm;
00035 }
|
|
||||||||||||
|
Definition at line 25 of file DataStream.C. References Vector::x, Vector::y, and Vector::z.
|
|
|
Definition at line 37 of file DataStream.C. |
1.3.9.1