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

Use new component helpers in a few algorithms. Refs #6333

Replaces copy-and-pasted code.
parent 78c53460
No related branches found
No related tags found
No related merge requests found
...@@ -11,6 +11,7 @@ The relative position will be applied to the current position, so applying this ...@@ -11,6 +11,7 @@ The relative position will be applied to the current position, so applying this
#include "MantidDataHandling/MoveInstrumentComponent.h" #include "MantidDataHandling/MoveInstrumentComponent.h"
#include "MantidDataObjects/Workspace2D.h" #include "MantidDataObjects/Workspace2D.h"
#include "MantidKernel/Exception.h" #include "MantidKernel/Exception.h"
#include "MantidGeometry/Instrument/ComponentHelper.h"
namespace Mantid namespace Mantid
{ {
...@@ -69,7 +70,7 @@ void MoveInstrumentComponent::exec() ...@@ -69,7 +70,7 @@ void MoveInstrumentComponent::exec()
const double X = getProperty("X"); const double X = getProperty("X");
const double Y = getProperty("Y"); const double Y = getProperty("Y");
const double Z = getProperty("Z"); const double Z = getProperty("Z");
const bool RelativePosition = getProperty("RelativePosition"); const bool relativePosition = getProperty("RelativePosition");
// Get the ParameterMap reference before the instrument so that // Get the ParameterMap reference before the instrument so that
// we avoid a copy // we avoid a copy
...@@ -106,35 +107,11 @@ void MoveInstrumentComponent::exec() ...@@ -106,35 +107,11 @@ void MoveInstrumentComponent::exec()
throw std::invalid_argument("DetectorID or ComponentName must be given."); throw std::invalid_argument("DetectorID or ComponentName must be given.");
} }
V3D Pos;// New relative position // Do the move
// First set it to the new absolute position using namespace Geometry::ComponentHelper;
if (RelativePosition) TransformType positionType = Absolute;
{ if(relativePosition) positionType = Relative;
Pos = comp->getPos() + V3D(X,Y,Z); Geometry::ComponentHelper::moveComponent(*comp, pmap, V3D(X,Y,Z), positionType);
}
else
{
Pos = V3D(X,Y,Z);
}
// Then find the corresponding relative position
boost::shared_ptr<const IComponent> parent = comp->getParent();
if (parent)
{
Pos -= parent->getPos();
Quat rot = parent->getRelativeRot();
rot.inverse();
rot.rotate(Pos);
}
boost::shared_ptr<const IComponent>grandparent = parent->getParent();
if (grandparent)
{
Quat rot = grandparent->getRelativeRot();
rot.inverse();
rot.rotate(Pos);
}
// Add a parameter for the new position
pmap.addV3D(comp.get(), "pos", Pos);
return; return;
} }
......
...@@ -11,6 +11,7 @@ RotateInstrumentComponent rotates a component around an axis of rotation by an a ...@@ -11,6 +11,7 @@ RotateInstrumentComponent rotates a component around an axis of rotation by an a
#include "MantidDataHandling/RotateInstrumentComponent.h" #include "MantidDataHandling/RotateInstrumentComponent.h"
#include "MantidDataObjects/Workspace2D.h" #include "MantidDataObjects/Workspace2D.h"
#include "MantidKernel/Exception.h" #include "MantidKernel/Exception.h"
#include "MantidGeometry/Instrument/ComponentHelper.h"
namespace Mantid namespace Mantid
{ {
...@@ -64,7 +65,7 @@ void RotateInstrumentComponent::exec() ...@@ -64,7 +65,7 @@ void RotateInstrumentComponent::exec()
const double Y = getProperty("Y"); const double Y = getProperty("Y");
const double Z = getProperty("Z"); const double Z = getProperty("Z");
const double angle = getProperty("Angle"); const double angle = getProperty("Angle");
const bool RelativeRotation = getProperty("RelativeRotation"); const bool relativeRotation = getProperty("RelativeRotation");
if (X + Y + Z == 0.0) throw std::invalid_argument("The rotation axis must not be a zero vector"); if (X + Y + Z == 0.0) throw std::invalid_argument("The rotation axis must not be a zero vector");
...@@ -103,30 +104,11 @@ void RotateInstrumentComponent::exec() ...@@ -103,30 +104,11 @@ void RotateInstrumentComponent::exec()
throw std::invalid_argument("DetectorID or ComponentName must be given."); throw std::invalid_argument("DetectorID or ComponentName must be given.");
} }
// First set new relative or absolute rotation // Do the rotation
Quat Rot; using namespace Geometry::ComponentHelper;
if (RelativeRotation) TransformType rotType = Absolute;
{ if(relativeRotation) rotType = Relative;
Quat Rot0 = comp->getRelativeRot(); Geometry::ComponentHelper::rotateComponent(*comp, pmap, Quat(angle,V3D(X,Y,Z)), rotType);
Rot = Rot0 * Quat(angle,V3D(X,Y,Z));
}
else
{
Rot = Quat(angle,V3D(X,Y,Z));
// Then find the corresponding relative position
boost::shared_ptr<const IComponent> parent = comp->getParent();
if (parent)
{
Quat rot0 = parent->getRelativeRot();
rot0.inverse();
Rot = Rot * rot0;
}
}
// Add a parameter for the new rotation
pmap.addQuat(comp.get(), "rot", Rot);
return;
} }
} // namespace DataHandling } // namespace DataHandling
......
...@@ -57,6 +57,7 @@ None ...@@ -57,6 +57,7 @@ None
#include "MantidDataHandling/SetScalingPSD.h" #include "MantidDataHandling/SetScalingPSD.h"
#include "MantidKernel/ArrayProperty.h" #include "MantidKernel/ArrayProperty.h"
#include "MantidKernel/BoundedValidator.h" #include "MantidKernel/BoundedValidator.h"
#include "MantidGeometry/Instrument/ComponentHelper.h"
#include "MantidAPI/FileProperty.h" #include "MantidAPI/FileProperty.h"
#include "MantidAPI/WorkspaceValidators.h" #include "MantidAPI/WorkspaceValidators.h"
#include <cmath> #include <cmath>
...@@ -326,6 +327,7 @@ void SetScalingPSD::movePos(API::MatrixWorkspace_sptr& WS, std::map<int,Kernel:: ...@@ -326,6 +327,7 @@ void SetScalingPSD::movePos(API::MatrixWorkspace_sptr& WS, std::map<int,Kernel::
* @param scaleMap :: A map of integer detectorID and corresponding scaling (in Y) * @param scaleMap :: A map of integer detectorID and corresponding scaling (in Y)
*/ */
std::map<int,Kernel::V3D>::iterator iter = posMap.begin(); std::map<int,Kernel::V3D>::iterator iter = posMap.begin();
Geometry::ParameterMap& pmap = WS->instrumentParameters();
boost::shared_ptr<const Instrument> inst = WS->getInstrument(); boost::shared_ptr<const Instrument> inst = WS->getInstrument();
boost::shared_ptr<const IComponent> comp; boost::shared_ptr<const IComponent> comp;
...@@ -343,7 +345,6 @@ void SetScalingPSD::movePos(API::MatrixWorkspace_sptr& WS, std::map<int,Kernel:: ...@@ -343,7 +345,6 @@ void SetScalingPSD::movePos(API::MatrixWorkspace_sptr& WS, std::map<int,Kernel::
// loop over detector (IComps) // loop over detector (IComps)
for(size_t id=0;id<m_vectDet.size();id++) for(size_t id=0;id<m_vectDet.size();id++)
{ {
V3D Pos,shift;// New relative position
comp = m_vectDet[id]; comp = m_vectDet[id];
boost::shared_ptr<const IDetector> det = boost::dynamic_pointer_cast<const IDetector>(comp); boost::shared_ptr<const IDetector> det = boost::dynamic_pointer_cast<const IDetector>(comp);
int idet=0; int idet=0;
...@@ -351,23 +352,7 @@ void SetScalingPSD::movePos(API::MatrixWorkspace_sptr& WS, std::map<int,Kernel:: ...@@ -351,23 +352,7 @@ void SetScalingPSD::movePos(API::MatrixWorkspace_sptr& WS, std::map<int,Kernel::
iter=posMap.find(idet); // check if we have a shift iter=posMap.find(idet); // check if we have a shift
if(iter==posMap.end()) continue; if(iter==posMap.end()) continue;
shift=iter->second; Geometry::ComponentHelper::moveComponent(*det, pmap, iter->second, Geometry::ComponentHelper::Relative);
// First set it to the new absolute position (code from MoveInstrument)
Pos = comp->getPos() + shift;
// Then find the corresponding relative position
boost::shared_ptr<const IComponent> parent = comp->getParent();
if (parent)
{
Pos -= parent->getPos();
Quat rot = parent->getRelativeRot();
rot.inverse();
rot.rotate(Pos);
}
//Need to get the address to the base instrument component
Geometry::ParameterMap& pmap = WS->instrumentParameters();
pmap.addV3D(comp.get(), "pos", Pos);
// Set the "sca" instrument parameter // Set the "sca" instrument parameter
std::map<int,double>::iterator it=scaleMap.find(idet); std::map<int,double>::iterator it=scaleMap.find(idet);
......
...@@ -17,6 +17,7 @@ It is assumed that the positions specified in the raw file are all with respect ...@@ -17,6 +17,7 @@ It is assumed that the positions specified in the raw file are all with respect
#include "MantidAPI/MatrixWorkspace.h" #include "MantidAPI/MatrixWorkspace.h"
#include "MantidAPI/SpectraDetectorMap.h" #include "MantidAPI/SpectraDetectorMap.h"
#include "MantidGeometry/Instrument.h" #include "MantidGeometry/Instrument.h"
#include "MantidGeometry/Instrument/ComponentHelper.h"
#include "MantidNexusCPP/NeXusFile.hpp" #include "MantidNexusCPP/NeXusFile.hpp"
#include "MantidNexusCPP/NeXusException.hpp" #include "MantidNexusCPP/NeXusException.hpp"
#include "LoadRaw/isisraw2.h" #include "LoadRaw/isisraw2.h"
...@@ -401,8 +402,6 @@ namespace Mantid ...@@ -401,8 +402,6 @@ namespace Mantid
const float theta, const float phi) const float theta, const float phi)
{ {
Geometry::ParameterMap & pmap = m_workspace->instrumentParameters(); Geometry::ParameterMap & pmap = m_workspace->instrumentParameters();
V3D parentPos;
if( det->getParent() ) parentPos = det->getParent()->getPos();
Kernel::V3D pos; Kernel::V3D pos;
if (!m_ignorePhi) if (!m_ignorePhi)
{ {
...@@ -414,12 +413,7 @@ namespace Mantid ...@@ -414,12 +413,7 @@ namespace Mantid
det->getPos().getSpherical(r,t,p); det->getPos().getSpherical(r,t,p);
pos.spherical(l2, theta, p); pos.spherical(l2, theta, p);
} }
// Set new relative position Geometry::ComponentHelper::moveComponent(*det, pmap, pos, Geometry::ComponentHelper::Absolute);
Kernel::V3D r = pos-parentPos;
Kernel::Quat q = det->getParent()->getRotation();
q.inverse();
q.rotate(r);
pmap.addV3D(det.get(), "pos", r);
} }
} // namespace DataHandling } // namespace DataHandling
......
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