#include "DataStream.h"#include "CollectionMgr.h"#include "Vector.h"#include "Tensor.h"#include <stdio.h>Go to the source code of this file.
Functions | |
| datastream & | operator<< (datastream &strm, const Vector &v1) |
| datastream & | operator<< (datastream &strm, const Tensor &t1) |
Variables | |
| datastream | dout |
|
||||||||||||
|
Definition at line 30 of file DataStream.C. 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.
|
|
|
Definition at line 37 of file DataStream.C. |
1.3.9.1