#include <iostream>#include <sstream>#include "charm++.h"Go to the source code of this file.
Classes | |
| class | infostream |
Defines | |
| #define | LOCALMOD(type) infostream& operator<<(type x) |
| #define | iFILE __FILE__<<'('<<__LINE__<<"): " |
| #define | iINFOF iINFO << iFILE |
| #define | iWARNF iWARN << iFILE |
| #define | iERRORF iERROR << iFILE |
| #define | iDEBUGF iDEBUG << iFILE |
| #define | iout CkpvAccess(iout_obj) |
Functions | |
| std::ostream & | operator<< (std::ostream &strm, const Vector &v1) |
| infostream & | operator<< (infostream &strm, const Vector &v1) |
| std::ostream & | operator<< (std::ostream &strm, const Tensor &t1) |
| infostream & | operator<< (infostream &strm, const Tensor &t1) |
| infostream & | endi (infostream &s) |
| std::ostream & | iINFO (std::ostream &s) |
| std::ostream & | iWARN (std::ostream &s) |
| std::ostream & | iERROR (std::ostream &s) |
| std::ostream & | iDEBUG (std::ostream &s) |
| std::ostream & | iPE (std::ostream &s) |
| CkpvExtern (infostream, iout_obj) | |
|
|
Definition at line 77 of file InfoStream.h. |
|
|
Definition at line 76 of file InfoStream.h. |
|
|
Definition at line 73 of file InfoStream.h. |
|
|
Definition at line 74 of file InfoStream.h. |
|
|
|
Definition at line 75 of file InfoStream.h. |
|
|
Definition at line 33 of file InfoStream.h. |
|
||||||||||||
|
|
|
|
|
Definition at line 97 of file InfoStream.C. 00097 { return s << "DEBUG: "; }
|
|
|
|
|
Definition at line 34 of file InfoStream.C. Referenced by LdbCoordinator::initialize(), LdbCoordinator::LdbCoordinator(), PatchMgr::PatchMgr(), PatchMap::registerPatch(), Sync::Sync(), and ComputeMgr::updateComputes(). 00034 {
00035 return s << "Pe(" << CkMyPe() << ')';
00036 }
|
|
|
||||||||||||
|
Definition at line 56 of file InfoStream.C. References Tensor::xx, Tensor::xy, Tensor::xz, Tensor::yx, Tensor::yy, Tensor::yz, Tensor::zx, Tensor::zy, and Tensor::zz. 00056 {
00057 strm << t1.xx << " " << t1.xy << " " << t1.xz << " "
00058 << t1.yx << " " << t1.yy << " " << t1.yz << " "
00059 << t1.zx << " " << t1.zy << " " << t1.zz;
00060 return strm;
00061 }
|
|
||||||||||||
|
Definition at line 49 of file InfoStream.C. References Tensor::xx, Tensor::xy, Tensor::xz, Tensor::yx, Tensor::yy, Tensor::yz, Tensor::zx, Tensor::zy, and Tensor::zz. 00049 {
00050 strm << t1.xx << " " << t1.xy << " " << t1.xz << " "
00051 << t1.yx << " " << t1.yy << " " << t1.yz << " "
00052 << t1.zx << " " << t1.zy << " " << t1.zz;
00053 return strm;
00054 }
|
|
||||||||||||
|
Definition at line 43 of file InfoStream.C. References Vector::x, Vector::y, and Vector::z.
|
|
||||||||||||
|
Definition at line 38 of file InfoStream.C. References Vector::x, Vector::y, and Vector::z.
|
1.3.9.1