diff --git a/Code/Mantid/Framework/Geometry/inc/MantidGeometry/Surfaces/Plane.h b/Code/Mantid/Framework/Geometry/inc/MantidGeometry/Surfaces/Plane.h index 8e4c34e0d412fb48ae83e4367c9adf82bf2a8c19..cdb7e3c93834ad0b65306a4a943cd091a134db53 100644 --- a/Code/Mantid/Framework/Geometry/inc/MantidGeometry/Surfaces/Plane.h +++ b/Code/Mantid/Framework/Geometry/inc/MantidGeometry/Surfaces/Plane.h @@ -82,7 +82,7 @@ namespace Mantid double distance(const Kernel::V3D&) const; ///< distance from a point double getDistance() const { return Dist; } ///< Distance from origin - Kernel::V3D getNormal() const { return NormV; } ///< Normal to plane (+ve surface) + const Kernel::V3D & getNormal() const { return NormV; } ///< Normal to plane (+ve surface) void rotate(const Kernel::Matrix<double>&); void displace(const Kernel::V3D&); diff --git a/Code/Mantid/Framework/Geometry/src/Objects/RuleItems.cpp b/Code/Mantid/Framework/Geometry/src/Objects/RuleItems.cpp index b78500bee17f5be0a2c15210e762d4fdf0892d51..97a69ac7534f19476cee3caa39210b17b17b4073 100644 --- a/Code/Mantid/Framework/Geometry/src/Objects/RuleItems.cpp +++ b/Code/Mantid/Framework/Geometry/src/Objects/RuleItems.cpp @@ -292,9 +292,11 @@ Intersection::isValid(const Kernel::V3D& Vec) const @retval 0 :: Vec is outside object. */ { - if (!A || !B) - return false; - return (A->isValid(Vec) && B->isValid(Vec)) ? true : false; + if(A && B) + { + return (A->isValid(Vec) && B->isValid(Vec)); + } + return false; } bool @@ -849,9 +851,10 @@ SurfPoint::isValid(const Kernel::V3D& Pt) const */ { if (key) - return (key->side(Pt)*sign)>=0 ? true : false; - else - return false; + { + return (key->side(Pt)*sign)>=0; + } + return false; } bool diff --git a/Code/Mantid/Framework/Geometry/src/Surfaces/Plane.cpp b/Code/Mantid/Framework/Geometry/src/Surfaces/Plane.cpp index 95962e6acb5e797a3a1b8e0838f9977885ae2f03..4e5004b92152aeebfaf0456353b085fa647efec8 100644 --- a/Code/Mantid/Framework/Geometry/src/Surfaces/Plane.cpp +++ b/Code/Mantid/Framework/Geometry/src/Surfaces/Plane.cpp @@ -220,8 +220,7 @@ Plane::side(const Kernel::V3D& A) const @retval 0 :: A is on the plane itself (within tolerence) */ { - double Dp=NormV.scalar_prod(A); - Dp-=Dist; + double Dp=NormV.scalar_prod(A)-Dist; if (Tolerance<fabs(Dp)) return (Dp>0) ? 1 : -1; return 0;