Go to the source code of this file.
Defines | |
#define | CLHEPTOOLS_CLHEPIOSTREAMS_H 1 |
Functions | |
std::ostream & | operator<< (std::ostream &os, const HepGeom::Transform3D &t) |
Global functions ClhepIostreams.h ClhepTools/ClhepIostreams.h. |
#define CLHEPTOOLS_CLHEPIOSTREAMS_H 1 |
Definition at line 3 of file ClhepIostreams.h.
std::ostream& operator<< | ( | std::ostream & | os, | |
const HepGeom::Transform3D & | t | |||
) |
Global functions ClhepIostreams.h ClhepTools/ClhepIostreams.h.
Definition at line 13 of file ClhepIostreams.h.
00013 { 00014 os << "\n" << t.xx() << " " << t.xy() << " " << t.xz() << " " << t.dx() ; 00015 os << "\n" << t.yx() << " " << t.yy() << " " << t.yz() << " " << t.dy() ; 00016 os << "\n" << t.zx() << " " << t.zy() << " " << t.zz() << " " << t.dz() 00017 << "\n"; 00018 return os; 00019 }