Skip to content
Snippets Groups Projects
Commit 147653d1 authored by Gigg, Martyn Anthony's avatar Gigg, Martyn Anthony
Browse files

Merge remote-tracking branch 'origin/feature/6455_expose_det_group_sep'

parents 25f94d9b ba3a1b83
No related merge requests found
......@@ -120,6 +120,9 @@ namespace Mantid
calculating such topology if it was not */
det_topology getTopology(Kernel::V3D &center)const;
/// Return separator for list of names of detectors
std::string getNameSeparator() const { return ";"; }
protected:
/// The ID of this effective detector
int m_id;
......@@ -134,8 +137,7 @@ namespace Mantid
mutable det_topology group_topology;
/// group centre is the geometrical centre of the detectors group calculated when the calculate group topology is invoked
mutable Kernel::V3D groupCentre;
/// Return separator for list of names of detectors
std::string getNameSeparator() const { return ";"; }
// functions inherited from IComponent
Component* clone() const{ return NULL; }
......
......@@ -9,6 +9,7 @@ void export_DetectorGroup()
{
class_<DetectorGroup, bases<IDetector>, boost::noncopyable>("DetectorGroup", no_init)
.def("getDetectorIDs", &DetectorGroup::getDetectorIDs, "Returns the list of detector IDs within this group")
.def("getNameSeparator",&DetectorGroup::getNameSeparator,"Returns separator for list of names of detectors")
;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment