Skip to content
Snippets Groups Projects
Commit 33547f2d authored by Christophe Palmann's avatar Christophe Palmann
Browse files

BUG: change to circular basis corrected

parent 02d3149f
No related branches found
No related tags found
No related merge requests found
......@@ -80,9 +80,15 @@ public:
const ComplexType coef(0.5);
const ComplexType j2S_hv = S_hv * ComplexType(0.0, 2.0);
const ComplexType jS_hh = S_hh * ComplexType(0.0, 1.0);
const ComplexType jS_vv = S_vv * ComplexType(0.0, 1.0);
const ComplexType Sll = coef * ( -S_hh-j2S_hv+S_vv );
/*const ComplexType Sll = coef * ( -S_hh-j2S_hv+S_vv );
const ComplexType Slr = coef * ( -S_hh+-S_vv );
const ComplexType Srr = coef * ( -S_hh+j2S_hv+S_vv );*/
const ComplexType Sll = coef * ( S_hh+j2S_hv-S_vv );
const ComplexType Slr = coef * ( jS_hh + jS_vv );
const ComplexType Srr = coef * ( -S_hh+j2S_hv+S_vv );
//const ComplexType conjSll = vcl_conj(Sll);
......
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