Line data Source code
1 : //# Jones.h: Definition of Jones
2 : //# Copyright (C) 1996,1997,2000,2001,2002,2003
3 : //# Associated Universities, Inc. Washington DC, USA.
4 : //#
5 : //# This library is free software; you can redistribute it and/or modify it
6 : //# under the terms of the GNU Library General Public License as published by
7 : //# the Free Software Foundation; either version 2 of the License, or (at your
8 : //# option) any later version.
9 : //#
10 : //# This library is distributed in the hope that it will be useful, but WITHOUT
11 : //# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 : //# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
13 : //# License for more details.
14 : //#
15 : //# You should have received a copy of the GNU Library General Public License
16 : //# along with this library; if not, write to the Free Software Foundation,
17 : //# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA.
18 : //#
19 : //# Correspondence concerning AIPS++ should be adressed as follows:
20 : //# Internet email: casa-feedback@nrao.edu.
21 : //# Postal address: AIPS++ Project Office
22 : //# National Radio Astronomy Observatory
23 : //# 520 Edgemont Road
24 : //# Charlottesville, VA 22903-2475 USA
25 : //#
26 : //#
27 :
28 :
29 : #include <synthesis/MeasurementComponents/Jones.h>
30 : #include <casacore/casa/aips.h>
31 : #include <casacore/casa/BasicSL/Complex.h>
32 : #include <iostream>
33 : #include <casacore/casa/Exceptions/Error.h>
34 : #include <casacore/casa/namespace.h>
35 :
36 : using namespace casacore;
37 : namespace casa { //# NAMESPACE CASA - BEGIN
38 :
39 :
40 : // Constructor
41 0 : Jones::Jones() :
42 0 : j0_(NULL),
43 0 : ok0_(NULL),
44 0 : j_(NULL),
45 0 : ji_(NULL),
46 0 : ok_(NULL),
47 0 : oki_(NULL),
48 0 : cOne_(1.0),
49 0 : cZero_(0.0),
50 0 : scalardata_(false),
51 0 : vtmp_(VisVector::Four,true)
52 0 : {}
53 :
54 : // In place invert
55 0 : void Jones::invert() {
56 :
57 0 : if (!ok_) throw(AipsError("Illegal use of Jones::invert()"));
58 :
59 0 : if (ok_[0]&&ok_[1]&&ok_[2]&&ok_[3]) {
60 0 : Complex det,tmp;
61 0 : tmp=j_[0];
62 0 : det=j_[0]*j_[3]-j_[1]*j_[2];
63 0 : if (abs(det)>0.0) {
64 0 : j_[0]=j_[3]/det;
65 0 : j_[1]=-j_[1]/det;
66 0 : j_[2]=-j_[2]/det;
67 0 : j_[3]=tmp/det;
68 : } else {
69 0 : zero();
70 0 : ok_[0]=ok_[1]=ok_[2]=ok_[3]=false;
71 : }
72 0 : }
73 : else {
74 0 : ok_[0]=ok_[1]=ok_[2]=ok_[3]=false;
75 0 : zero();
76 : }
77 :
78 0 : }
79 :
80 : // Set matrix elements according to ok flag
81 : // (so we don't have to check ok flags atomically in apply)
82 0 : void Jones::setMatByOk() {
83 :
84 : // Not needed if ok_ not set
85 0 : if (!ok_) return;
86 :
87 0 : if (!ok_[0] ||
88 0 : !ok_[1] ||
89 0 : !ok_[2] ||
90 0 : !ok_[3]) {
91 0 : j_[0]=j_[3]=cOne_;
92 0 : j_[1]=j_[2]=cZero_;
93 : }
94 :
95 : }
96 :
97 :
98 :
99 : // In-place multipication with another Jones
100 0 : void Jones::operator*=(const Jones& other) {
101 :
102 0 : switch(other.type()) {
103 : case Jones::General:
104 : case Jones::Diagonal:
105 : case Jones::Scalar:
106 : default:
107 0 : throw(AipsError("General multiplication NYI"));
108 : break;
109 : }
110 : }
111 :
112 : // Apply rightward to a VisVector
113 0 : void Jones::applyRight(VisVector& v) const {
114 :
115 : // full general right-ward apply
116 : //
117 : // [w x][A B] = [wA+xC wB+xD] [00+12 01+13]
118 : // [y z][C D] [yA+zC yB+ZD] [20+32 21+23]
119 :
120 :
121 : // flag
122 0 : if (v.f_) flagRight(v);
123 :
124 0 : switch(v.type()) {
125 0 : case VisVector::Four: {
126 0 : vtmp_.v_[0] = v.v_[2];
127 0 : vtmp_.v_[1] = v.v_[3];
128 0 : vtmp_.v_[2] = v.v_[0];
129 0 : vtmp_.v_[3] = v.v_[1];
130 :
131 0 : v.v_[0]*=(j_[0]);
132 0 : v.v_[1]*=(j_[0]);
133 0 : v.v_[2]*=(j_[3]);
134 0 : v.v_[3]*=(j_[3]);
135 :
136 0 : vtmp_.v_[0]*=(j_[1]);
137 0 : vtmp_.v_[1]*=(j_[1]);
138 0 : vtmp_.v_[2]*=(j_[2]);
139 0 : vtmp_.v_[3]*=(j_[2]);
140 :
141 0 : for (Int i=0;i<4;++i)
142 0 : v.v_[i] += vtmp_.v_[i];
143 :
144 0 : break;
145 : }
146 0 : default:
147 0 : throw(AipsError("Jones matrix apply (J::aR) incompatible with VisVector."));
148 : }
149 0 : }
150 :
151 : // Apply rightward to a VisVector
152 0 : void Jones::applyRight(VisVector& v, Bool& vflag) const {
153 :
154 0 : if (!ok_) throw(AipsError("Illegal use of Jones::applyRight(v,vflag)"));
155 :
156 0 : applyFlag(vflag);
157 0 : applyRight(v);
158 :
159 0 : }
160 :
161 : // Apply leftward (transposed) to a VisVector
162 0 : void Jones::applyLeft(VisVector& v) const {
163 :
164 : // full general left-ward (conjugate transpose) apply
165 : //
166 : // [A B][w y*] = [Aw+Bx* Ay*+Bz] [00+11 02+13]
167 : // [C D][x* z] [Cw+Dx* Cy*+Dz] [20+31 22+33]
168 :
169 :
170 : // flag
171 0 : if (v.f_) flagLeft(v);
172 :
173 0 : switch(v.type()) {
174 0 : case VisVector::Four: {
175 0 : vtmp_.v_[0] = v.v_[1];
176 0 : vtmp_.v_[1] = v.v_[0];
177 0 : vtmp_.v_[2] = v.v_[3];
178 0 : vtmp_.v_[3] = v.v_[2];
179 :
180 0 : Complex c;
181 0 : c=conj(j_[0]);
182 0 : v.v_[0]*=c;
183 0 : v.v_[2]*=c;
184 0 : c=conj(j_[3]);
185 0 : v.v_[1]*=c;
186 0 : v.v_[3]*=c;
187 :
188 0 : c=conj(j_[1]);
189 0 : vtmp_.v_[0]*=c;
190 0 : vtmp_.v_[2]*=c;
191 0 : c=conj(j_[2]);
192 0 : vtmp_.v_[1]*=c;
193 0 : vtmp_.v_[3]*=c;
194 :
195 0 : for (Int i=0;i<4;++i)
196 0 : v.v_[i] += vtmp_.v_[i];
197 :
198 0 : break;
199 : }
200 0 : default:
201 0 : throw(AipsError("Jones matrix apply (J::aL) incompatible with VisVector."));
202 : }
203 0 : }
204 :
205 : // Apply leftward to a VisVector
206 0 : void Jones::applyLeft(VisVector& v, Bool& vflag) const {
207 :
208 0 : if (!ok_) throw(AipsError("Illegal use of Jones::applyLeft(v,vflag)"));
209 :
210 0 : applyFlag(vflag);
211 0 : applyLeft(v);
212 :
213 0 : }
214 :
215 : // Set flags according to solution flags
216 : // (non-corr-dep flag version)
217 0 : void Jones::applyFlag(Bool& vflag) const {
218 0 : vflag|=(!(ok_[0]&&ok_[1]&&ok_[2]&&ok_[3]));
219 0 : }
220 : // Corr-dep flag rightward onto a VisVector
221 0 : void Jones::flagRight(VisVector& v) const {
222 0 : switch(v.type()) {
223 0 : case VisVector::Four: {
224 :
225 0 : vtmp_.f_[0]=(v.f_[0]||v.f_[2]||(!ok_[0])||(!ok_[1]));
226 0 : vtmp_.f_[1]=(v.f_[1]||v.f_[3]||(!ok_[0])||(!ok_[1]));
227 0 : vtmp_.f_[2]=(v.f_[0]||v.f_[2]||(!ok_[2])||(!ok_[3]));
228 0 : vtmp_.f_[3]=(v.f_[1]||v.f_[3]||(!ok_[2])||(!ok_[3]));
229 :
230 0 : for (Int i=0;i<4;++i)
231 0 : v.f_[i] |= vtmp_.f_[i];
232 :
233 0 : break;
234 : }
235 0 : default:
236 0 : throw(AipsError("Jones matrix apply (J::fR) incompatible with VisVector."));
237 : }
238 0 : }
239 : // Corr-dep flag leftward onto a VisVector
240 0 : void Jones::flagLeft(VisVector& v) const {
241 0 : switch(v.type()) {
242 0 : case VisVector::Four: {
243 :
244 0 : vtmp_.f_[0]=(v.f_[0]||v.f_[1]||(!ok_[0])||(!ok_[1]));
245 0 : vtmp_.f_[1]=(v.f_[0]||v.f_[1]||(!ok_[2])||(!ok_[3]));
246 0 : vtmp_.f_[2]=(v.f_[2]||v.f_[3]||(!ok_[0])||(!ok_[1]));
247 0 : vtmp_.f_[3]=(v.f_[2]||v.f_[3]||(!ok_[2])||(!ok_[3]));
248 :
249 0 : for (Int i=0;i<4;++i)
250 0 : v.f_[i] |= vtmp_.f_[i];
251 :
252 0 : break;
253 : }
254 0 : default:
255 0 : throw(AipsError("Jones matrix apply (J::fR) incompatible with VisVector."));
256 : }
257 0 : }
258 :
259 :
260 0 : void Jones::zero() {
261 0 : ji_=j_;
262 0 : for (Int i=0;i<4;++i,++ji_)
263 0 : (*ji_)=0.0;
264 0 : }
265 :
266 :
267 : // Constructor
268 0 : JonesGenLin::JonesGenLin() : Jones() {}
269 :
270 : // In place invert
271 0 : void JonesGenLin::invert() {
272 :
273 0 : if (!ok_) throw(AipsError("Illegal use of JonesGenLin::invert()"));
274 :
275 : // In linear approx, we merely negate the off-diag terms!
276 :
277 : /*
278 : if (ok_[0]&&ok_[1]) {
279 : j_[0]*=-1.0;
280 : j_[1]*=-1.0;
281 : } else {
282 : zero();
283 : ok_[0]=ok_[1]=false;
284 : }
285 : */
286 :
287 0 : if (ok_[0])
288 0 : j_[0]*=-1.0;
289 : else
290 0 : j_[0]=0.0;
291 :
292 0 : if (ok_[1])
293 0 : j_[1]*=-1.0;
294 : else
295 0 : j_[1]=0.0;
296 :
297 0 : }
298 :
299 : // Set matrix elements according to ok flag
300 : // (so we don't have to check ok flags atomically in apply)
301 0 : void JonesGenLin::setMatByOk() {
302 :
303 : // Not needed if ok_ not set
304 0 : if (!ok_) return;
305 :
306 0 : if (!ok_[0] ||
307 0 : !ok_[1]) {
308 0 : j_[0]=j_[1]=cOne_;
309 : }
310 :
311 : }
312 :
313 :
314 : // In-place multipication with another Jones
315 0 : void JonesGenLin::operator*=(const Jones& other) {
316 :
317 0 : switch(other.type()) {
318 : case Jones::General:
319 : case Jones::GenLinear:
320 : case Jones::Diagonal:
321 : case Jones::Scalar:
322 : default:
323 0 : throw(AipsError("General multiplication NYI"));
324 : break;
325 : }
326 : }
327 :
328 : // Apply rightward to a VisVector
329 0 : void JonesGenLin::applyRight(VisVector& v) const {
330 0 : switch(v.type()) {
331 0 : case VisVector::Four: {
332 :
333 : // Only adjust cross-hands by pars times parallel hands
334 : //
335 : // [1 X][A B] = [A B+XD]
336 : // [Y 1][C D] [YA+C D ]
337 :
338 : // flag
339 0 : if (v.f_) flagRight(v);
340 :
341 0 : v.v_[1]+=(j_[0]*v.v_[3]);
342 0 : v.v_[2]+=(j_[1]*v.v_[0]);
343 :
344 0 : break;
345 : }
346 0 : default:
347 0 : throw(AipsError("JonesGenLin matrix apply (J::aR) incompatible with VisVector."));
348 : }
349 0 : }
350 :
351 : // Apply rightward to a VisVector
352 0 : void JonesGenLin::applyRight(VisVector& v, Bool& vflag) const {
353 :
354 0 : if (!ok_) throw(AipsError("Illegal use of JonesGenLin::applyRight(v,vflag)"));
355 :
356 0 : applyFlag(vflag);
357 0 : applyRight(v);
358 :
359 0 : }
360 :
361 : // Apply leftward (conjugate transposed) to a VisVector
362 0 : void JonesGenLin::applyLeft(VisVector& v) const {
363 0 : switch(v.type()) {
364 0 : case VisVector::Four: {
365 :
366 : // Only adjust cross-hands by pars times parallel hands
367 : //
368 : // [A B] [1 Y*] = [A B+AY*]
369 : // [C D] [X* 1 ] [C+DX* D ]
370 :
371 : // flag
372 0 : if (v.f_) flagLeft(v);
373 :
374 0 : v.v_[1]+=(conj(j_[1])*v.v_[0]);
375 0 : v.v_[2]+=(conj(j_[0])*v.v_[3]);
376 :
377 0 : break;
378 : }
379 0 : default:
380 0 : throw(AipsError("JonesGenLin matrix apply (J::aL) incompatible with VisVector."));
381 : }
382 0 : }
383 :
384 : // Apply leftward to a VisVector
385 0 : void JonesGenLin::applyLeft(VisVector& v, Bool& vflag) const {
386 :
387 0 : if (!ok_) throw(AipsError("Illegal use of JonesGenLin::applyLeft(v,vflag)"));
388 :
389 0 : applyFlag(vflag);
390 0 : applyLeft(v);
391 :
392 0 : }
393 :
394 : // Set flags according to solution flags
395 : // (non-corr-dep flag version)
396 0 : void JonesGenLin::applyFlag(Bool& vflag) const {
397 0 : vflag|=(!(ok_[0]&&ok_[1]));
398 0 : }
399 :
400 : // Corr-dep flag rightward to a VisVector
401 0 : void JonesGenLin::flagRight(VisVector& v) const {
402 0 : switch(v.type()) {
403 0 : case VisVector::Four: {
404 :
405 0 : v.f_[1] |= ((!ok_[0])||v.f_[3]);
406 0 : v.f_[2] |= ((!ok_[1])||v.f_[0]);
407 :
408 0 : break;
409 : }
410 0 : default:
411 0 : throw(AipsError("JonesGenLin matrix apply (JGL::fR) incompatible with VisVector."));
412 : }
413 0 : }
414 : // Corr-dep flag leftward to a VisVector
415 0 : void JonesGenLin::flagLeft(VisVector& v) const {
416 0 : switch(v.type()) {
417 0 : case VisVector::Four: {
418 :
419 0 : v.f_[1] |= ((!ok_[1])||v.f_[0]);
420 0 : v.f_[2] |= ((!ok_[0])||v.f_[3]);
421 :
422 0 : break;
423 : }
424 0 : default:
425 0 : throw(AipsError("JonesGenLin matrix apply (JGL::fL) incompatible with VisVector."));
426 : }
427 0 : }
428 :
429 0 : void JonesGenLin::zero() {
430 0 : ji_=j_;
431 0 : for (Int i=0;i<2;++i,++ji_)
432 0 : (*ji_)=0.0;
433 0 : }
434 :
435 :
436 : // Constructor
437 0 : JonesDiag::JonesDiag() : Jones() {}
438 :
439 : // In place invert
440 0 : void JonesDiag::invert() {
441 :
442 0 : if (!ok_) throw(AipsError("Illegal use of JonesDiag::invert()"));
443 :
444 0 : ji_=j_;
445 0 : oki_=ok_;
446 0 : for (Int i=0;i<2;++i,++ji_,++oki_)
447 0 : if ((*oki_) && abs(*ji_)>0.0)
448 0 : (*ji_)=cOne_/(*ji_);
449 : else {
450 0 : (*ji_)=cZero_;
451 0 : (*oki_)=false;
452 : }
453 :
454 0 : }
455 :
456 : // Set matrix elements according to ok flag
457 : // (so we don't have to check ok flags atomically in apply)
458 0 : void JonesDiag::setMatByOk() {
459 :
460 : // Not needed if ok_ not set
461 0 : if (!ok_) return;
462 :
463 0 : if (!ok_[0]) j_[0]=cOne_;
464 0 : if (!ok_[1]) j_[1]=cOne_;
465 :
466 : }
467 :
468 :
469 : // In-place multipication with another Jones
470 0 : void JonesDiag::operator*=(const Jones& other) {
471 :
472 0 : if (!ok_) throw(AipsError("Illegal use of JonesDiag::operator*=()"));
473 :
474 0 : switch(other.type()) {
475 0 : case Jones::General:
476 : case Jones::GenLinear:
477 0 : throw(AipsError("Can't multiply Diagonal by General Jones matrix."));
478 : break;
479 0 : case Jones::Diagonal: {
480 0 : if (ok_[0]&=other.ok_[0]) j_[0]*=other.j_[0];
481 0 : if (ok_[1]&=other.ok_[1]) j_[1]*=other.j_[1];
482 0 : break;
483 : }
484 0 : case Jones::Scalar: {
485 0 : if (ok_[0]&=other.ok_[0]) j_[0]*=other.j_[0];
486 0 : if (ok_[1]&=other.ok_[0]) j_[1]*=other.j_[0];
487 0 : break;
488 : }
489 : }
490 0 : }
491 :
492 : // Apply rightward to a VisVector
493 0 : void JonesDiag::applyRight(VisVector& v) const {
494 0 : if (v.f_) flagRight(v);
495 0 : switch(v.type()) {
496 0 : case VisVector::Four: {
497 0 : v.v_[0]*=j_[0];
498 0 : v.v_[1]*=j_[0];
499 0 : v.v_[2]*=j_[1];
500 0 : v.v_[3]*=j_[1];
501 0 : break;
502 : }
503 0 : case VisVector::Two: {
504 0 : v.v_[0]*=j_[0];
505 0 : v.v_[1]*=j_[1];
506 0 : break;
507 : }
508 0 : case VisVector::One: {
509 0 : v.v_[0]*=(*j_);
510 0 : break;
511 : }
512 0 : default:
513 0 : throw(AipsError("Jones matrix apply (JD::aR) incompatible with VisVector."));
514 : }
515 0 : }
516 :
517 0 : void JonesDiag::applyRight(VisVector& v, Bool& vflag) const {
518 :
519 0 : if (!ok_) throw(AipsError("Illegal use of JonesDiag::applyRight(v,vflag)"));
520 :
521 0 : applyFlag(vflag);
522 0 : applyRight(v);
523 :
524 0 : }
525 :
526 : // Apply leftward (transposed) to a VisVector
527 0 : void JonesDiag::applyLeft(VisVector& v) const {
528 0 : if (v.f_) flagLeft(v);
529 0 : switch(v.type()) {
530 0 : case VisVector::Four: {
531 0 : Complex c;
532 0 : c=conj(j_[0]);
533 0 : v.v_[0]*=c;
534 0 : v.v_[2]*=c;
535 0 : c=conj(j_[1]);
536 0 : v.v_[1]*=c;
537 0 : v.v_[3]*=c;
538 0 : break;
539 : }
540 0 : case VisVector::Two: {
541 0 : v.v_[0]*=conj(j_[0]);
542 0 : v.v_[1]*=conj(j_[1]);
543 0 : break;
544 : }
545 0 : case VisVector::One: {
546 0 : v.v_[0]*=conj(*j_);
547 0 : break;
548 : }
549 0 : default:
550 0 : throw(AipsError("Jones matrix apply (JD::aL) incompatible with VisVector."));
551 : }
552 0 : }
553 :
554 0 : void JonesDiag::applyLeft(VisVector& v, Bool& vflag) const {
555 :
556 0 : if (!ok_) throw(AipsError("Illegal use of JonesDiag::applyLeft(v,vflag)"));
557 :
558 0 : applyFlag(vflag);
559 0 : applyLeft(v);
560 0 : }
561 :
562 :
563 : // Set flags according to solution flags
564 : // (non-corr-dep flag version)
565 0 : void JonesDiag::applyFlag(Bool& vflag) const {
566 0 : if (scalardata_)
567 0 : vflag|=(!ok_[0]);
568 : else
569 0 : vflag|=(!(ok_[0]&&ok_[1]));
570 0 : }
571 : // Corr-dep flag right-ward onto a VisVector
572 0 : void JonesDiag::flagRight(VisVector& v) const {
573 0 : switch(v.type()) {
574 0 : case VisVector::Four: {
575 0 : v.f_[0]|=(!ok_[0]);
576 0 : v.f_[1]|=(!ok_[0]);
577 0 : v.f_[2]|=(!ok_[1]);
578 0 : v.f_[3]|=(!ok_[1]);
579 0 : break;
580 : }
581 0 : case VisVector::Two: {
582 0 : v.f_[0]|=(!ok_[0]);
583 0 : v.f_[1]|=(!ok_[1]);
584 0 : break;
585 : }
586 0 : case VisVector::One: {
587 0 : v.f_[0]|=(!ok_[0]);
588 0 : break;
589 : }
590 0 : default:
591 0 : throw(AipsError("Jones matrix apply (JD::aF) incompatible with VisVector."));
592 : }
593 0 : }
594 :
595 : // Corr-dep flag left-ward onto a VisVector
596 0 : void JonesDiag::flagLeft(VisVector& v) const {
597 0 : switch(v.type()) {
598 0 : case VisVector::Four: {
599 0 : v.f_[0]|=(!ok_[0]);
600 0 : v.f_[1]|=(!ok_[1]);
601 0 : v.f_[2]|=(!ok_[0]);
602 0 : v.f_[3]|=(!ok_[1]);
603 0 : break;
604 : }
605 0 : case VisVector::Two: {
606 0 : v.f_[0]|=(!ok_[0]);
607 0 : v.f_[1]|=(!ok_[1]);
608 0 : break;
609 : }
610 0 : case VisVector::One: {
611 0 : v.f_[0]|=(!ok_[0]);
612 0 : break;
613 : }
614 0 : default:
615 0 : throw(AipsError("Jones matrix apply (JD::aF) incompatible with VisVector."));
616 : }
617 0 : }
618 :
619 :
620 :
621 0 : void JonesDiag::zero() {
622 0 : ji_=j_;
623 0 : for (Int i=0;i<2;++i,++ji_)
624 0 : (*ji_)=0.0;
625 0 : }
626 :
627 :
628 : // Constructor
629 0 : JonesScal::JonesScal() : JonesDiag() {}
630 :
631 : // In place invert
632 0 : void JonesScal::invert() {
633 :
634 0 : if (!ok_) throw(AipsError("Illegal use of JonesScal::invert()"));
635 :
636 0 : if ((*ok_) && abs(*j_)>0.0)
637 0 : (*j_)=cOne_/(*j_);
638 : else {
639 0 : (*j_)=cZero_;
640 0 : (*ok_)=false;
641 : }
642 :
643 0 : }
644 :
645 :
646 : // Set matrix elements according to ok flag
647 : // (so we don't have to check ok flags atomically in apply)
648 0 : void JonesScal::setMatByOk() {
649 :
650 : // Not needed if ok_ not set
651 0 : if (!ok_) return;
652 :
653 0 : if (!ok_[0]) j_[0]=cOne_;
654 :
655 : }
656 :
657 :
658 : // In-place multipication with another Jones
659 0 : void JonesScal::operator*=(const Jones& other) {
660 :
661 0 : if (!ok_) throw(AipsError("Illegal use of JonesScal::operator*="));
662 :
663 0 : switch(other.type()) {
664 0 : case Jones::General:
665 : case Jones::GenLinear:
666 0 : throw(AipsError("Can't multiply Scalar Jones by General Jones matrix."));
667 : break;
668 0 : case Jones::Diagonal:
669 0 : throw(AipsError("Can't multiply Scalar Jones by Diagonal Jones matrix."));
670 : break;
671 0 : case Jones::Scalar: {
672 0 : if ((*ok_)&=(*other.ok_)) (*j_)*=(*other.j_);
673 0 : break;
674 : }
675 : }
676 0 : }
677 :
678 :
679 : // Apply rightward to a VisVector
680 0 : void JonesScal::applyRight(VisVector& v) const {
681 0 : if (v.f_) flagRight(v);
682 0 : for (Int i=0;i<v.vistype_;++i)
683 0 : v.v_[i] *= (*j_);
684 0 : }
685 :
686 0 : void JonesScal::applyRight(VisVector& v, Bool& vflag) const {
687 :
688 0 : if (!ok_) throw(AipsError("Illegal use of JonesScal::applyRight(v,vflag)"));
689 :
690 0 : applyFlag(vflag);
691 0 : applyRight(v);
692 0 : }
693 :
694 : // Apply leftward (transposed) to a VisVector
695 0 : void JonesScal::applyLeft(VisVector& v) const {
696 0 : if (v.f_) flagLeft(v);
697 0 : Complex c;
698 0 : c=conj(*j_);
699 0 : for (Int i=0;i<v.vistype_;++i)
700 0 : v.v_[i] *= c;
701 0 : }
702 :
703 0 : void JonesScal::applyLeft(VisVector& v, Bool& vflag) const {
704 :
705 0 : if (!ok_) throw(AipsError("Illegal use of JonesScal::applyLeft(v,vflag)"));
706 :
707 0 : applyFlag(vflag);
708 0 : applyLeft(v);
709 :
710 0 : }
711 :
712 : // Set flags according to solution flags
713 : // (non-corr-dep flag version)
714 0 : void JonesScal::applyFlag(Bool& vflag) const {
715 0 : vflag|=(!*ok_);
716 0 : }
717 : // Corr-dep flag rightward onto a VisVector
718 : // (NB: flagLeft call this since flagging commutes for scalars)
719 0 : void JonesScal::flagRight(VisVector& v) const {
720 0 : for (Int i=0;i<v.vistype_;++i) v.f_[i]|=(!*ok_);
721 0 : }
722 :
723 :
724 0 : void JonesScal::zero() {
725 0 : (*j_)=0.0;
726 0 : }
727 :
728 :
729 : // GLOBALS---------------------------
730 :
731 :
732 0 : Jones* createJones(const Jones::JonesType& jtype) {
733 0 : Jones *j(NULL);
734 0 : switch (jtype) {
735 0 : case Jones::General:
736 0 : j = new Jones();
737 0 : break;
738 0 : case Jones::GenLinear:
739 0 : j = new JonesGenLin();
740 0 : break;
741 0 : case Jones::Diagonal:
742 0 : j = new JonesDiag();
743 0 : break;
744 0 : case Jones::Scalar:
745 0 : j = new JonesScal();
746 0 : break;
747 : }
748 0 : return j;
749 : }
750 :
751 0 : void apply(const Jones& j1, VisVector& v, const Jones& j2) {
752 :
753 : // Apply Jones matrix from right, then left
754 0 : j1.applyRight(v);
755 0 : j2.applyLeft(v);
756 :
757 0 : }
758 :
759 0 : void apply(const Jones& j1, VisVector& v, const Jones& j2, Bool& vflag) {
760 :
761 : // Apply Jones matrix from right, then left
762 0 : j1.applyRight(v,vflag);
763 0 : j2.applyLeft(v,vflag);
764 :
765 0 : }
766 :
767 : // print out a Jones matrix (according to type)
768 0 : ostream& operator<<(ostream& os, const Jones& mat) {
769 :
770 : Complex *ji;
771 0 : ji=mat.j_;
772 :
773 0 : switch (mat.type()) {
774 0 : case Jones::General:
775 0 : cout << "General Jones: " << endl;
776 0 : for (Int i=0;i<2;++i) {
777 0 : cout << " [" << *ji++;
778 0 : cout << ", " << *ji++ << "]";
779 0 : if (i<1) cout << endl;
780 : }
781 0 : break;
782 0 : case Jones::GenLinear:
783 0 : cout << "GenLinear Jones: (off diag) " << endl;
784 0 : cout << " [" << *ji++;
785 0 : cout << ", " << *ji << "]";
786 0 : break;
787 0 : case Jones::Diagonal:
788 0 : cout << "Diagonal Jones: " << endl;
789 0 : cout << " [" << *ji++;
790 0 : cout << ", " << *ji << "]";
791 0 : break;
792 0 : case Jones::Scalar:
793 0 : cout << "Scalar Jones: " << endl;
794 0 : cout << "[" << *ji << "]";
795 0 : break;
796 : }
797 :
798 0 : return os;
799 : }
800 :
801 : // Return the enum for from an int
802 0 : Jones::JonesType jonesType(const Int& n) {
803 0 : switch (n) {
804 0 : case 1:
805 0 : return Jones::Scalar;
806 0 : case 2:
807 0 : return Jones::Diagonal;
808 0 : case 4:
809 0 : return Jones::General;
810 0 : default:
811 0 : throw(AipsError("Bad JonesType."));
812 :
813 : }
814 :
815 : }
816 :
817 : } //# NAMESPACE CASA - END
|