00001
00002 #ifndef CLHEPTOOLS_CLHEPIOSTREAMS_H
00003 #define CLHEPTOOLS_CLHEPIOSTREAMS_H 1
00004
00005
00006
00013 std::ostream & operator<<(std::ostream & os, const HepGeom::Transform3D & t) {
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 }
00020
00021 #endif // CLHEPTOOLS_CLHEPIOSTREAMS_H