30 setArbitrarily (u1, v1, v2, v3);
77 double u1u2 = ucolX.
dot(ucolY);
78 double f12 = std::fabs(u1u2);
80 std::cerr <<
"HepRotation::set() - "
81 <<
"col's X and Y supplied for Rotation are not close to orthogonal"
84 double u1u3 = ucolX.
dot(ucolZ);
85 double f13 = std::fabs(u1u3);
87 std::cerr <<
"HepRotation::set() - "
88 <<
"col's X and Z supplied for Rotation are not close to orthogonal"
91 double u2u3 = ucolY.
dot(ucolZ);
92 double f23 = std::fabs(u2u3);
94 std::cerr <<
"HepRotation::set() - "
95 <<
"col's Y and Z supplied for Rotation are not close to orthogonal"
101 if ( (f12 <= f13) && (f12 <= f23) ) {
102 isRotation = setCols ( ucolX, ucolY, ucolZ, u1u2, v1, v2, v3 );
104 std::cerr <<
"HepRotation::set() - "
105 <<
"col's X Y and Z supplied form closer to a reflection than a Rotation "
106 <<
"\n col Z is set to col X cross col Y" << std::endl;
108 }
else if ( f13 <= f23 ) {
109 isRotation = setCols ( ucolZ, ucolX, ucolY, u1u3, v3, v1, v2 );
111 std::cerr <<
"HepRotation::set() - "
112 <<
"col's X Y and Z supplied form closer to a reflection than a Rotation "
113 <<
"\n col Y is set to col Z cross col X" << std::endl;
116 isRotation = setCols ( ucolY, ucolZ, ucolX, u2u3, v2, v3, v1 );
118 std::cerr <<
"HepRotation::set() - "
119 <<
"col's X Y and Z supplied form closer to a reflection than a Rotation "
120 <<
"\n col X is set to col Y cross col Z" << std::endl;