source: tags/casa3.2.0asap/src/PKSFiller.cpp@ 2747

Last change on this file since 2747 was 1916, checked in by Takeshi Nakazato, 14 years ago

New Development: No

JIRA Issue: No

Ready for Test: Yes

Interface Changes: No

What Interface Changed: Please list interface changes

Test Programs: sd regression tests

Put in Release Notes: No

Module(s): Module Names change impacts.

Description: Describe your changes here...

The antenna and getpt parameters for MS filler is effective again.


File size: 10.4 KB
Line 
1//
2// C++ Implementation: PKSFiller
3//
4// Description:
5//
6//
7// Author: Malte Marquarding <asap@atnf.csiro.au>, (C) 2010
8//
9// Copyright: See COPYING file that comes with this distribution
10//
11//
12#include <casa/iostream.h>
13#include <casa/iomanip.h>
14
15#include <casa/Exceptions.h>
16#include <casa/OS/Path.h>
17#include <casa/OS/File.h>
18#include <casa/Quanta/Unit.h>
19#include <casa/Arrays/ArrayMath.h>
20#include <casa/Arrays/ArrayLogical.h>
21#include <casa/Utilities/Regex.h>
22#include <casa/Utilities/DataType.h>
23#include <casa/Logging/LogIO.h>
24
25#include <casa/Containers/Record.h>
26#include <measures/Measures/MDirection.h>
27#include <measures/Measures/MeasConvert.h>
28
29#include <atnf/PKSIO/PKSrecord.h>
30#include <atnf/PKSIO/PKSreader.h>
31
32#ifdef HAS_ALMA
33 #include <casa/System/ProgressMeter.h>
34#endif
35#include <casa/Logging/LogIO.h>
36
37#include <time.h>
38#include <sstream>
39
40#include "STDefs.h"
41#include "STAttr.h"
42
43#include "PKSFiller.h"
44#include "STHeader.h"
45
46using namespace casa;
47
48namespace asap {
49
50
51PKSFiller::PKSFiller( CountedPtr< Scantable > stbl ) :
52 FillerBase(stbl),
53 reader_(0)
54{
55 setReferenceRegex(".*(e|w|_R)$");
56}
57
58PKSFiller::~PKSFiller()
59{
60 close();
61}
62
63bool PKSFiller::open( const std::string& filename, const Record& rec)
64{
65 Bool haveBase, haveSpectra;
66
67 String inName(filename);
68 Path path(inName);
69 inName = path.expandedName();
70
71 File file(inName);
72 filename_ = inName;
73
74 // Create reader and fill in values for arguments
75 String format;
76 Vector<Bool> beams, ifs;
77 Vector<uInt> nchans,npols;
78
79 String antenna("");
80 Bool getPt = False;
81
82 // parsing MS options
83 if ( rec.isDefined( "ms" ) ) {
84 Record msrec = rec.asRecord( "ms" ) ;
85 //msrec.print( cout ) ;
86 if ( msrec.isDefined( "getpt" ) ) {
87 getPt = msrec.asBool( "getpt" ) ;
88 }
89 if ( msrec.isDefined( "antenna" ) ) {
90 if ( msrec.type( msrec.fieldNumber( "antenna" ) ) == TpInt ) {
91 Int antInt = msrec.asInt( "antenna" ) ;
92 ostringstream oss ;
93 oss << antInt ;
94 antenna = String( oss ) ;
95 }
96 else {
97 antenna = msrec.asString( "antenna" ) ;
98 }
99 }
100 }
101
102 reader_ = getPKSreader(inName, antenna, 0, 0, format, beams, ifs,
103 nchans, npols, haveXPol_, haveBase, haveSpectra);
104 if (reader_.null() == True) {
105 return False;
106 }
107
108 if (!haveSpectra) {
109 reader_ = 0;
110 throw(AipsError("No spectral data in file."));
111 }
112
113 LogIO os( LogOrigin( "PKSFiller", "open()", WHERE ) ) ;
114 nBeam_ = beams.nelements();
115 nIF_ = ifs.nelements();
116 // Get basic parameters.
117 if ( anyEQ(haveXPol_, True) ) {
118 os << "Cross polarization present" << LogIO::POST;
119 for (uInt i=0; i< npols.nelements();++i) {
120 if (npols[i] < 3) npols[i] += 2;// Convert Complex -> 2 Floats
121 }
122 }
123 STHeader header;
124 header.nchan = max(nchans);
125 header.npol = max(npols);
126 header.nbeam = nBeam_;
127
128 Int status = reader_->getHeader(header.observer, header.project,
129 header.antennaname, header.antennaposition,
130 header.obstype,
131 header.fluxunit,
132 header.equinox,
133 header.freqref,
134 header.utc, header.reffreq,
135 header.bandwidth);
136
137 if (status) {
138 reader_ = 0;
139 throw(AipsError("Failed to get header."));
140 }
141 os << "Found " << header.antennaname << " data." << LogIO::POST;
142 if ((header.obstype).matches("*SW*")) {
143 // need robust way here - probably read ahead of next timestamp
144 os << "Header indicates frequency switched observation.\n"
145 << "setting # of IFs = 1 " << LogIO::POST;
146
147 nIF_ = 1;
148 header.obstype = String("fswitch");
149 }
150 // Determine Telescope and set brightness unit
151 Bool throwIt = False;
152 Instrument inst = STAttr::convertInstrument(header.antennaname, throwIt);
153
154 if (inst==ATMOPRA || inst==TIDBINBILLA) {
155 header.fluxunit = "K";
156 } else {
157 // downcase for use with Quanta
158 if (header.fluxunit == "JY") {
159 header.fluxunit = "Jy";
160 }
161 }
162 STAttr stattr;
163 header.poltype = stattr.feedPolType(inst);
164 header.nif = nIF_;
165 header.epoch = "UTC";
166 // *** header.frequnit = "Hz"
167 // Apply selection criteria.
168 Vector<Int> ref;
169
170 Vector<Int> start(nIF_, 1);
171 Vector<Int> end(nIF_, 0);
172 reader_->select(beams, ifs, start, end, ref, True, haveXPol_[0], False, getPt);
173 setHeader(header);
174 //For MS, add the location of POINTING of the input MS so one get
175 //pointing data from there, if necessary.
176 //Also find nrow in MS
177 nInDataRow = 0;
178 if (format == "MS2") {
179 Path datapath(inName);
180 String ptTabPath = datapath.absoluteName();
181 Table inMS(ptTabPath);
182 nInDataRow = inMS.nrow();
183 ptTabPath.append("/POINTING");
184 table_->table().rwKeywordSet().define("POINTING", ptTabPath);
185 if (header.antennaname.matches("GBT")) {
186 String GOTabPath = datapath.absoluteName();
187 GOTabPath.append("/GBT_GO");
188 table_->table().rwKeywordSet().define("GBT_GO", GOTabPath);
189 }
190 }
191 String freqFrame = header.freqref;
192 //translate frequency reference frame back to
193 //MS style (as PKSMS2reader converts the original frame
194 //in FITS standard style)
195 if (freqFrame == "TOPOCENT") {
196 freqFrame = "TOPO";
197 } else if (freqFrame == "GEOCENER") {
198 freqFrame = "GEO";
199 } else if (freqFrame == "BARYCENT") {
200 freqFrame = "BARY";
201 } else if (freqFrame == "GALACTOC") {
202 freqFrame = "GALACTO";
203 } else if (freqFrame == "LOCALGRP") {
204 freqFrame = "LGROUP";
205 } else if (freqFrame == "CMBDIPOL") {
206 freqFrame = "CMB";
207 } else if (freqFrame == "SOURCE") {
208 freqFrame = "REST";
209 }
210 // set both "FRAME" and "BASEFRAME"
211 table_->frequencies().setFrame(freqFrame, false);
212 table_->frequencies().setFrame(freqFrame, true);
213
214 return true;
215}
216
217void PKSFiller::close( )
218{
219 if (reader_.null() != False) {
220 reader_ = 0;
221 }
222 table_ = 0;
223}
224
225void PKSFiller::fill( )
226{
227 int status = 0;
228 LogIO os( LogOrigin( "PKSFiller", "fill()", WHERE ) ) ;
229
230/**
231 Int beamNo, IFno, refBeam, scanNo, cycleNo;
232 Float azimuth, elevation, focusAxi, focusRot, focusTan,
233 humidity, parAngle, pressure, temperature, windAz, windSpeed;
234 Double bandwidth, freqInc, interval, mjd, refFreq, srcVel;
235 String fieldName, srcName, tcalTime, obsType;
236 Vector<Float> calFctr, sigma, tcal, tsys;
237 Matrix<Float> baseLin, baseSub;
238 Vector<Double> direction(2), scanRate(2), srcDir(2), srcPM(2), restFreq(1);
239 Matrix<Float> spectra;
240 Matrix<uChar> flagtra;
241 Complex xCalFctr;
242 Vector<Complex> xPol;
243**/
244
245 Double min = 0.0;
246 Double max = nInDataRow;
247#ifdef HAS_ALMA
248 ProgressMeter fillpm(min, max, "Data importing progress");
249#endif
250 PKSrecord pksrec;
251 pksrec.srcType=-1;
252 int n = 0;
253 bool isGBTFITS = false ;
254 if ((table_->getAntennaName().find( "GBT" ) != String::npos)
255 && File(filename_).isRegular()) {
256 FILE *fp = fopen( filename_.c_str(), "r" ) ;
257 fseek( fp, 640, SEEK_SET ) ;
258 char buf[81] ;
259 fread( buf, 80, 1, fp ) ;
260 buf[80] = '\0' ;
261 if ( strstr( buf, "NRAO_GBT" ) != NULL ) {
262 isGBTFITS = true ;
263 }
264 fclose( fp ) ;
265 }
266
267 while ( status == 0 ) {
268
269 status = reader_->read(pksrec);
270 if ( status != 0 ) break;
271 n += 1;
272 Regex filterrx(".*[SL|PA]$");
273 Regex obsrx("^AT.+");
274 if ( table_->getAntennaName().matches(obsrx) &&
275 pksrec.obsType.matches(filterrx)) {
276 //cerr << "ignoring paddle scan" << endl;
277 continue;
278 }
279
280 Vector<Double> sratedbl(pksrec.scanRate.nelements());
281 convertArray(sratedbl, pksrec.scanRate);
282 setScanRate(sratedbl);
283
284 Regex rx(getReferenceRegex());
285 Regex rx2("_S$");
286 Int match = pksrec.srcName.matches(rx);
287 std::string srcname;
288 Int srctype = Int(SrcType::NOTYPE);
289 if (match) {
290 srcname = pksrec.srcName;
291 srctype = Int(SrcType::PSOFF);
292 } else {
293 srcname = pksrec.srcName.before(rx2);
294 srctype = Int(SrcType::PSON);
295 }
296 if ( pksrec.srcType != Int(SrcType::NOTYPE)) {
297 srctype = pksrec.srcType ;
298 }
299 setTime(pksrec.mjd, pksrec.interval);
300 setSource(srcname, srctype, pksrec.fieldName,
301 pksrec.srcDir, pksrec.srcPM, pksrec.srcVel);
302
303 if (nBeam_ > 1 ) {
304 setReferenceBeam(pksrec.refBeam-1);
305 }
306
307 setMolecule(pksrec.restFreq);
308 setTcal(pksrec.tcalTime, pksrec.tcal);
309 setWeather(pksrec.temperature, pksrec.pressure,
310 pksrec.humidity, pksrec.windSpeed,
311 pksrec.windAz);
312 setFocus(pksrec.parAngle, pksrec.focusAxi, pksrec.focusTan,
313 pksrec.focusRot);
314 setDirection(pksrec.direction, pksrec.azimuth, pksrec.elevation);
315
316 setFrequency(Double(pksrec.spectra.nrow()/2),
317 pksrec.refFreq, pksrec.freqInc);
318
319 // Note: this is only one value for all polarisations!
320 setFlagrow(pksrec.flagrow);
321 // Turn the (nchan,npol) matrix and possible complex xPol vector
322 // into 2-4 rows in the scantable
323 Vector<Float> tsysvec(1);
324 // Why is spectra.ncolumn() == 3 for haveXPol_ == True
325 uInt npol = (pksrec.spectra.ncolumn()==1 ? 1: 2);
326 uInt polno =0;
327 for ( uInt i=0; i< npol; ++i ) {
328 tsysvec = pksrec.tsys(i);
329 if (isGBTFITS) {
330 polno = pksrec.polNo ;
331 } else {
332 polno = i;
333 }
334 setIndex(pksrec.scanNo-1, pksrec.cycleNo-1, pksrec.IFno-1, polno,
335 pksrec.beamNo-1);
336 setSpectrum(pksrec.spectra.column(i), pksrec.flagged.column(i), tsysvec);
337 commitRow();
338 }
339 if ( haveXPol_[0] ) {
340 // no tsys given for xpol, so emulate it
341 tsysvec = sqrt(pksrec.tsys[0]*pksrec.tsys[1]);
342 // add real part of cross pol
343 polno = 2;
344 Vector<Float> r(real(pksrec.xPol));
345 // make up flags from linears
346 /// @fixme this has to be a bitwise or of both pols
347 /// pksrec.flagged.column(0) | pksrec.flagged.column(1);
348
349 setIndex(pksrec.scanNo-1, pksrec.cycleNo-1, pksrec.IFno-1, polno,
350 pksrec.beamNo-1);
351 setSpectrum(r, pksrec.flagged.column(0), tsysvec);
352 commitRow();
353
354 // ad imaginary part of cross pol
355 polno = 3;
356 Vector<Float> im(imag(pksrec.xPol));
357 setIndex(pksrec.scanNo-1, pksrec.cycleNo-1, pksrec.IFno-1, polno,
358 pksrec.beamNo-1);
359 setSpectrum(im, pksrec.flagged.column(0), tsysvec);
360 commitRow();
361 }
362#ifdef HAS_ALMA
363 fillpm._update(n);
364#endif
365 }
366 if (status > 0) {
367 close();
368 throw(AipsError("Reading error occured, data possibly corrupted."));
369 }
370#ifdef HAS_ALMA
371 fillpm.done();
372#endif
373}
374
375}//namespace asap
Note: See TracBrowser for help on using the repository browser.