diff --git a/Framework/Geometry/inc/MantidGeometry/Instrument/DetectorInfoItem.h b/Framework/Geometry/inc/MantidGeometry/Instrument/DetectorInfoItem.h index ff4487c5255adb9595da6c4884ae5d0a5a81b146..1d20c6140ca44561420d1bd9cc1d01d016c292fb 100644 --- a/Framework/Geometry/inc/MantidGeometry/Instrument/DetectorInfoItem.h +++ b/Framework/Geometry/inc/MantidGeometry/Instrument/DetectorInfoItem.h @@ -57,6 +57,7 @@ public: DetectorInfoItem(DetectorInfoItem &&other) = default; DetectorInfoItem &operator=(DetectorInfoItem &&rhs) = default; + // Methods that can be accessed via the iterator bool isMonitor() const { return m_detectorInfo->isMonitor(m_index); } bool isMasked() const { return m_detectorInfo->isMasked(m_index); } @@ -71,34 +72,11 @@ public: return m_detectorInfo->rotation(m_index); } - void advance(int64_t delta) { - m_index = delta < 0 ? std::max(static_cast<uint64_t>(0), - static_cast<uint64_t>(m_index) + delta) - : std::min(m_detectorInfo->size(), - m_index + static_cast<size_t>(delta)); - } - - // This could cause a segmentation fault if a user goes past the end of the - // iterator and tries to index into the n+1 th element (which would not - // exist). Adding range checks to all the above methods may slow down - // performance though. - void incrementIndex() { - if (m_index < m_detectorInfo->size()) { - ++m_index; - } - } - - void decrementIndex() { - if (m_index > 0) { - --m_index; - } - } - + // Needed for test file size_t getIndex() const { return m_index; } - void setIndex(const size_t index) { m_index = index; } - private: + // Allow DetectorInfoIterator access friend class DetectorInfoIterator; // Private constructor, can only be created by DetectorInfoIterator diff --git a/Framework/Geometry/inc/MantidGeometry/Instrument/DetectorInfoIterator.h b/Framework/Geometry/inc/MantidGeometry/Instrument/DetectorInfoIterator.h index 2a4decd56230a2cce317a63a77aa81ebdb83c53f..445143f0ef98884d077d07db0029e88cf1713292 100644 --- a/Framework/Geometry/inc/MantidGeometry/Instrument/DetectorInfoIterator.h +++ b/Framework/Geometry/inc/MantidGeometry/Instrument/DetectorInfoIterator.h @@ -52,23 +52,47 @@ public: : m_item(detectorInfo, index) {} private: + // Allow boost iterator access friend class boost::iterator_core_access; - void increment() { m_item.incrementIndex(); } + // Iterator methods + void advance(int64_t delta) { + m_item.m_index = + delta < 0 ? std::max(static_cast<uint64_t>(0), + static_cast<uint64_t>(m_item.m_index) + delta) + : std::min(m_item.m_detectorInfo->size(), + m_item.m_index + static_cast<size_t>(delta)); + } - bool equal(const DetectorInfoIterator &other) const { - return m_item.getIndex() == other.m_item.getIndex(); + // This could cause a segmentation fault if a user goes past the end of the + // iterator and tries to index into the n+1 th element (which would not + // exist). Adding range checks to all the above methods may slow down + // performance though. + void increment() { + if (m_item.m_index < m_item.m_detectorInfo->size()) { + ++m_item.m_index; + } } - const DetectorInfoItem &dereference() const { return m_item; } + void decrement() { + if (m_item.m_index > 0) { + --m_item.m_index; + } + } + + size_t getIndex() const { return m_item.m_index; } - void decrement() { m_item.decrementIndex(); } + void setIndex(const size_t index) { m_item.m_index = index; } - void advance(int64_t delta) { m_item.advance(delta); } + bool equal(const DetectorInfoIterator &other) const { + return getIndex() == other.getIndex(); + } + + const DetectorInfoItem &dereference() const { return m_item; } uint64_t distance_to(const DetectorInfoIterator &other) const { - return static_cast<uint64_t>(other.m_item.getIndex()) - - static_cast<uint64_t>(m_item.getIndex()); + return static_cast<uint64_t>(other.getIndex()) - + static_cast<uint64_t>(getIndex()); } DetectorInfoItem m_item; diff --git a/Framework/PythonInterface/mantid/geometry/src/Exports/DetectorInfoIterator.cpp b/Framework/PythonInterface/mantid/geometry/src/Exports/DetectorInfoIterator.cpp index 29db1668f095129720efba7bec1ecd16ac4b229a..682626794a4041a809d431eab56788024f7c770e 100644 --- a/Framework/PythonInterface/mantid/geometry/src/Exports/DetectorInfoIterator.cpp +++ b/Framework/PythonInterface/mantid/geometry/src/Exports/DetectorInfoIterator.cpp @@ -10,6 +10,6 @@ using namespace boost::python; void export_DetectorInfoIterator() { // Export to Python - class_<DetectorInfoIterator, boost::noncopyable>("DetectorInfoIterator", + class_<DetectorInfoIterator>("DetectorInfoIterator", no_init); } diff --git a/Framework/PythonInterface/test/python/mantid/geometry/DetectorInfoTest.py b/Framework/PythonInterface/test/python/mantid/geometry/DetectorInfoTest.py index 9edff2ba62fa09a7d67f6d72e82a5c87d7b252dc..ff7e32725f5e2a465e80c9abbb707a540436f6aa 100644 --- a/Framework/PythonInterface/test/python/mantid/geometry/DetectorInfoTest.py +++ b/Framework/PythonInterface/test/python/mantid/geometry/DetectorInfoTest.py @@ -4,7 +4,6 @@ import unittest from testhelpers import WorkspaceCreationHelper from mantid.kernel import V3D from mantid.kernel import Quat -from mantid.geometry import DetectorInfoItem from mantid.simpleapi import *