Skip to content
Snippets Groups Projects
Commit 44b4a4dd authored by Arafat Nourredine's avatar Arafat Nourredine
Browse files

- Read frameY from 1280 to 0 (modules are mounted in opposite direction)

parent 815a8b99
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,7 @@
</parent>
<groupId>fr.soleil.device</groupId>
<artifactId>MythenWAXS-${aol}-${mode}</artifactId>
<version>1.0.2-SNAPSHOT</version>
<version>1.0.2</version>
<packaging>nar</packaging>
<name>MythenWAXS</name>
<description>MythenWAXS device</description>
......
......@@ -320,7 +320,7 @@ void MythenPool::compute_frame_xy()
//NB: Mythen modules are mounted in opposite sens, why we use (1279-k) instead of k !!
m_frame_x_values.push_back(twotheta);
m_frame_y_values.push_back(frame.at(k) * m_scales.at(nb_total_modules + j));
m_frame_y_values.push_back(frame.at(1279-k) * m_scales.at(nb_total_modules + j));
}
}
INFO_STREAM << "m_frame_x_values.size() = " << m_frame_x_values.size() << std::endl;
......
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