Skip to content
Snippets Groups Projects
Commit 9143545a authored by Wuttke, Joachim's avatar Wuttke, Joachim Committed by Wuttke, Joachim
Browse files

corr

parent 674b6772
No related branches found
No related tags found
No related merge requests found
This commit is part of merge request !488. Comments created here will be created in the context of that merge request.
......@@ -89,7 +89,7 @@ std::vector<R3> Lattice3D::reciprocalLatticeVectorsWithinRadius(const R3 q, doub
index_Z + nearest_coords.z());
if (m_selection_rule && !m_selection_rule->coordinateSelected(coords))
continue;
R3 latticePoint = coords.x() * m_ra + coords.y() * m_rb + coords.y() * m_rc;
R3 latticePoint = coords.x() * m_ra + coords.y() * m_rb + coords.z() * m_rc;
if ((latticePoint - q).mag() <= dq)
ret.push_back(latticePoint);
}
......
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