Skip to content
Snippets Groups Projects
Commit 064a2845 authored by Owen Arnold's avatar Owen Arnold
Browse files

Address Simon's comments

parent 814c228e
No related branches found
No related tags found
No related merge requests found
...@@ -52,14 +52,11 @@ private: ...@@ -52,14 +52,11 @@ private:
/// Map of component ids to indexes /// Map of component ids to indexes
boost::shared_ptr<std::unordered_map<Geometry::IComponent *, size_t>> boost::shared_ptr<std::unordered_map<Geometry::IComponent *, size_t>>
m_compIDToIndex; m_compIDToIndex;
void init();
public: public:
ComponentInfo( ComponentInfo(
const Mantid::Beamline::ComponentInfo &componentInfo, const Mantid::Beamline::ComponentInfo &componentInfo,
const std::vector<Mantid::Geometry::IComponent *> &componentIds); const std::vector<Mantid::Geometry::IComponent *> componentIds);
ComponentInfo(const Mantid::Beamline::ComponentInfo &componentInfo,
std::vector<Mantid::Geometry::IComponent *> &&componentIds);
std::vector<size_t> detectorIndices(size_t componentIndex) const; std::vector<size_t> detectorIndices(size_t componentIndex) const;
std::vector<Mantid::Geometry::IComponent *> componentIds() const; std::vector<Mantid::Geometry::IComponent *> componentIds() const;
size_t size() const; size_t size() const;
......
...@@ -10,42 +10,22 @@ ...@@ -10,42 +10,22 @@
namespace Mantid { namespace Mantid {
namespace API { namespace API {
/**
* Constructor
* @param componentInfo : Beamline wrapped ComponentInfo
* @param componentIds : l-value reference to ComponentIDs ordered by component
* index
*/
ComponentInfo::ComponentInfo(
const Mantid::Beamline::ComponentInfo &componentInfo,
const std::vector<Mantid::Geometry::IComponent *> &componentIds)
: m_componentInfo(componentInfo),
m_componentIds(
boost::make_shared<std::vector<Geometry::ComponentID>>(componentIds)),
m_compIDToIndex(boost::make_shared<
std::unordered_map<Geometry::IComponent *, size_t>>()) {
init();
}
/** /**
* Constructor * Constructor
* @brief ComponentInfo::ComponentInfo * @brief ComponentInfo::ComponentInfo
* @param componentInfo * @param componentInfo
* @param componentIds : r-value reference to ComponentIDs ordered by component * @param componentIds : ComponentIDs ordered by component
* index * index
*/ */
ComponentInfo::ComponentInfo( ComponentInfo::ComponentInfo(
const Mantid::Beamline::ComponentInfo &componentInfo, const Mantid::Beamline::ComponentInfo &componentInfo,
std::vector<Mantid::Geometry::IComponent *> &&componentIds) std::vector<Mantid::Geometry::IComponent *> componentIds)
: m_componentInfo(componentInfo), : m_componentInfo(componentInfo),
m_componentIds(boost::make_shared<std::vector<Geometry::ComponentID>>( m_componentIds(boost::make_shared<std::vector<Geometry::ComponentID>>(
std::move(componentIds))), std::move(componentIds))),
m_compIDToIndex(boost::make_shared< m_compIDToIndex(boost::make_shared<
std::unordered_map<Geometry::IComponent *, size_t>>()) { std::unordered_map<Geometry::IComponent *, size_t>>()) {
init();
}
void ComponentInfo::init() {
/* /*
* Ideally we would check here that componentIds.size() == * Ideally we would check here that componentIds.size() ==
* m_componentInfo.size(). * m_componentInfo.size().
......
...@@ -103,7 +103,6 @@ void ExperimentInfo::copyExperimentInfoFrom(const ExperimentInfo *other) { ...@@ -103,7 +103,6 @@ void ExperimentInfo::copyExperimentInfoFrom(const ExperimentInfo *other) {
for (const auto &chopper : other->m_choppers) { for (const auto &chopper : other->m_choppers) {
m_choppers.push_back(chopper->clone()); m_choppers.push_back(chopper->clone());
} }
*m_detectorInfo = *other->m_detectorInfo;
// We do not copy Beamline::SpectrumInfo (which contains detector grouping // We do not copy Beamline::SpectrumInfo (which contains detector grouping
// information) for now: // information) for now:
// - For MatrixWorkspace, grouping information is still stored in ISpectrum // - For MatrixWorkspace, grouping information is still stored in ISpectrum
...@@ -111,7 +110,6 @@ void ExperimentInfo::copyExperimentInfoFrom(const ExperimentInfo *other) { ...@@ -111,7 +110,6 @@ void ExperimentInfo::copyExperimentInfoFrom(const ExperimentInfo *other) {
// not here since we just copy the experiment data). // not here since we just copy the experiment data).
// - For cached groupings (for MDWorkspaces), grouping was not copied in the // - For cached groupings (for MDWorkspaces), grouping was not copied in the
// old implementation either. // old implementation either.
*m_componentInfo = *other->m_componentInfo;
} }
/** Clone this ExperimentInfo class into a new one /** Clone this ExperimentInfo class into a new one
......
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