Skip to content
Snippets Groups Projects
Commit 2a10c1e0 authored by Van Herck, Walter's avatar Van Herck, Walter
Browse files

Small correction to remove eclipse parsing error

parent ebf8f44b
No related branches found
No related tags found
No related merge requests found
......@@ -82,7 +82,7 @@ bool Beam::checkPolarization(const Eigen::Matrix2cd &polarization) const
if (std::imag( (complex_t)polarization(0,0) ) != 0.0) return false;
if (polarization(0,0)+polarization(1,1) != 1.0) return false;
if (polarization(0,1) != std::conj( (complex_t)polarization(1,0))) return false;
if (std::abs( polarization.determinant() ) < 0.0) return false;
if (std::abs( (complex_t)polarization.determinant() ) < 0.0) return false;
return true;
}
......
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