Skip to content
Snippets Groups Projects
Commit 21327ed9 authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

rm last use of GisasDirection::zReflected

parent 864f2724
No related branches found
No related tags found
1 merge request!1245simplify handling of beam direction; rm special case PERPENDICULAR_TO_REFLECTED_BEAM_DPOS
......@@ -39,8 +39,6 @@ public:
//! Returns Cartesian 3D vector, where alpha, phi parameterize declination away from (r,0,0)
R3 declinationVector(double r) const;
GisasDirection zReflected() const { return {-m_alpha, m_phi}; }
private:
double m_alpha; //!< declination in +z direction
double m_phi; //!< declination in -y direction
......
......@@ -505,7 +505,7 @@ std::shared_ptr<Instrument> Instrument2DItem::createInstrument() const
{
auto beam = beamItem()->createBeam();
auto detector = detectorItem()->createDetector();
detector->setDetectorNormal(beam->direction().zReflected().declinationVector(1));
detector->setDetectorNormal(beam->ki());
return std::make_shared<Instrument>(beam, *detector);
}
......@@ -516,7 +516,7 @@ ScatteringSimulation* Instrument2DItem::createScatteringSimulation(const MultiLa
beam->setPolarization(m_polarization);
auto detector = detectorItem()->createDetector();
detector->setAnalyzer(m_analyzerDirection, m_analyzerEfficiency, m_analyzerTotalTransmission);
detector->setDetectorNormal(beam->direction().zReflected().declinationVector(1));
detector->setDetectorNormal(beam->ki());
auto* result = new ScatteringSimulation(*beam, sample, *detector);
return result;
......@@ -528,7 +528,7 @@ OffspecSimulation* Instrument2DItem::createOffspecSimulation(const MultiLayer& s
beam->setPolarization(m_polarization);
auto detector = detectorItem()->createDetector();
detector->setAnalyzer(m_analyzerDirection, m_analyzerEfficiency, m_analyzerTotalTransmission);
detector->setDetectorNormal(beam->direction().zReflected().declinationVector(1));
detector->setDetectorNormal(beam->ki());
auto* result = new OffspecSimulation(*beam, sample, *detector);
return result;
......
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