Source
452
452
//if( ! itsImager ) itsImager = new SynthesisImager();
453
453
itsImager = makeSI();
454
454
itsImager->makePSF();
455
455
456
456
} catch (AipsError x) {
457
457
RETHROW(x);
458
458
}
459
459
return rstat;
460
460
}
461
461
462
+
463
+
casac::record* synthesisimager::apparentsens()
464
+
{
465
+
casac::record* rstat(0);
466
+
try{
467
+
468
+
itsImager = makeSI();
469
+
itsImager->makePSF();
470
+
rstat = fromRecord( itsImager->apparentSensitivity() );
471
+
472
+
} catch (AipsError x) {
473
+
RETHROW(x);
474
+
}
475
+
return rstat;
476
+
}
477
+
478
+
479
+
462
480
bool synthesisimager::drygridding(const std::vector<std::string>& cfList)
463
481
{
464
482
Bool rstat(false);
465
483
466
484
try {
467
485
468
486
//if( ! itsImager ) itsImager = new SynthesisImager();
469
487
itsImager = makeSI();
470
488
itsImager->dryGridding(cfList);
471
489