#include <DetectorDescription/Core/interface/CLHEPToROOTMath.h>
Public Member Functions | |
DDRotOutput () | |
void | operator() (const DDRotationMatrix &r) |
~DDRotOutput () |
Definition at line 62 of file CLHEPToROOTMath.h.
DDRotOutput::DDRotOutput | ( | ) | [inline] |
DDRotOutput::~DDRotOutput | ( | ) | [inline] |
void DDRotOutput::operator() | ( | const DDRotationMatrix & | r | ) | [inline] |
Definition at line 66 of file CLHEPToROOTMath.h.
References GenMuonPlsPt100GeV_cfg::cout, and lat::endl().
00066 { 00067 double xx, xy, xz, yx, yy, yz, zx, zy, zz; 00068 r.GetComponents(xx, xy, xz, yx, yy, yz, zx, zy, zz); 00069 std::cout << "[ " << std::setw(12) << std::fixed << std::setprecision(5) << xx; 00070 std::cout << ", " << std::setw(12) << std::fixed << std::setprecision(5) << xy; 00071 std::cout << ", " << std::setw(12) << std::fixed << std::setprecision(5) << xz << " ]" << std::endl; 00072 std::cout << "[ " << std::setw(12) << std::fixed << std::setprecision(5) << yx; 00073 std::cout << ", " << std::setw(12) << std::fixed << std::setprecision(5) << yy; 00074 std::cout << ", " << std::setw(12) << std::fixed << std::setprecision(5) << yz << " ]" << std::endl; 00075 std::cout << "[ " << std::setw(12) << std::fixed << std::setprecision(5) << zx; 00076 std::cout << ", " << std::setw(12) << std::fixed << std::setprecision(5) << zy; 00077 std::cout << ", " << std::setw(12) << std::fixed << std::setprecision(5) << zz << " ]"<< std::endl; 00078 }