#include "InfoStream.h"#include "charm++.h"#include "Vector.h"#include "Tensor.h"#include <stdio.h>Go to the source code of this file.
Defines | |
| #define | LOCALMOD(type) |
Functions | |
| infostream & | endi (infostream &s) |
| std::ostream & | iPE (std::ostream &s) |
| 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) |
| std::ostream & | iINFO (std::ostream &s) |
| std::ostream & | iWARN (std::ostream &s) |
| std::ostream & | iERROR (std::ostream &s) |
| std::ostream & | iDEBUG (std::ostream &s) |
Variables | |
| infostream | iout |
|
|
Value: infostream& infostream::operator<<(type x) \ { (std::ostream&)(*this) << x; return(*this); } Definition at line 69 of file InfoStream.C. |
|
|
modifiers * Definition at line 32 of file InfoStream.C. References infostream::endi(). Referenced by ComputeGridForce::doForce(), GridforceGrid::get_box(), GridforceGrid::initialize(), GridforceGrid::pack(), Molecule::print_atoms(), Molecule::print_bonds(), Molecule::print_exclusions(), and GridforceGrid::unpack(). 00032 { s.endi(); return s; }
|
|
|
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. 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.
|
|
||||||||||||
|
Definition at line 38 of file InfoStream.C.
|
|
1.3.9.1