source: trunk/src/STFiller.cpp @ 1450

Last change on this file since 1450 was 1450, checked in by MarkCalabretta, 16 years ago

Adapted to new API, PKSreader::read(const PKSrecord &).

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 10.7 KB
RevLine 
[805]1//
2// C++ Implementation: STFiller
3//
4// Description:
5//
6//
[1410]7// Author: Malte Marquarding <asap@atnf.csiro.au>, (C) 2006-2007
[805]8//
9// Copyright: See COPYING file that comes with this distribution
10//
11//
[404]12#include <casa/iostream.h>
13#include <casa/iomanip.h>
14
[125]15#include <casa/Exceptions.h>
[284]16#include <casa/OS/Path.h>
[290]17#include <casa/OS/File.h>
[338]18#include <casa/Quanta/Unit.h>
[805]19#include <casa/Arrays/ArrayMath.h>
[1060]20#include <casa/Arrays/ArrayLogical.h>
[805]21#include <casa/Utilities/Regex.h>
22
23#include <casa/Containers/RecordField.h>
24
25#include <tables/Tables/TableRow.h>
26
[1450]27#include <atnf/PKSIO/PKSrecord.h>
[2]28#include <atnf/PKSIO/PKSreader.h>
[1438]29#ifdef HAS_ALMA
30 #include <casa/System/ProgressMeter.h>
31#endif
[125]32
[835]33#include "STDefs.h"
[878]34#include "STAttr.h"
[2]35
[805]36#include "STFiller.h"
[901]37#include "STHeader.h"
[805]38
[125]39using namespace casa;
[2]40
[805]41namespace asap {
42
43STFiller::STFiller() :
[2]44  reader_(0),
[405]45  header_(0),
[805]46  table_(0)
[420]47{
[2]48}
[805]49
50STFiller::STFiller( CountedPtr< Scantable > stbl ) :
[46]51  reader_(0),
[405]52  header_(0),
[805]53  table_(stbl)
[420]54{
[46]55}
[2]56
[855]57STFiller::STFiller(const std::string& filename, int whichIF, int whichBeam ) :
[2]58  reader_(0),
[405]59  header_(0),
[805]60  table_(0)
[420]61{
[805]62  open(filename, whichIF, whichBeam);
[2]63}
64
[805]65STFiller::~STFiller()
66{
67  close();
[2]68}
69
[855]70void STFiller::open( const std::string& filename, int whichIF, int whichBeam )
[805]71{
[846]72  if (table_.null())  {
73    table_ = new Scantable();
74  }
[805]75  if (reader_)  { delete reader_; reader_ = 0; }
76  Bool haveBase, haveSpectra;
[2]77
78  String inName(filename);
[284]79  Path path(inName);
80  inName = path.expandedName();
[405]81
[290]82  File file(inName);
[805]83  if ( !file.exists() ) {
[290]84     throw(AipsError("File does not exist"));
85  }
[87]86  filename_ = inName;
[332]87
[405]88  // Create reader and fill in values for arguments
[2]89  String format;
[1060]90  Vector<Bool> beams, ifs;
91  Vector<uInt> nchans,npols;
92  if ( (reader_ = getPKSreader(inName, 0, 0, format, beams, ifs,
93                              nchans, npols, haveXPol_,haveBase, haveSpectra
94                              )) == 0 )  {
[405]95    throw(AipsError("Creation of PKSreader failed"));
[2]96  }
97  if (!haveSpectra) {
98    delete reader_;
99    reader_ = 0;
[87]100    throw(AipsError("No spectral data in file."));
[2]101    return;
102  }
103  nBeam_ = beams.nelements();
[1060]104  nIF_ = ifs.nelements();
[2]105  // Get basic parameters.
[1060]106  if ( anyEQ(haveXPol_, True) ) {
[717]107    pushLog("Cross polarization present");
[1060]108    for (uInt i=0; i< npols.nelements();++i) {
109      if (npols[i] < 3) npols[i] += 2;// Convert Complex -> 2 Floats
110    }
[110]111  }
[405]112  if (header_) delete header_;
[901]113  header_ = new STHeader();
[1060]114  header_->nchan = max(nchans);
115  header_->npol = max(npols);
[405]116  header_->nbeam = nBeam_;
[1410]117 
[405]118  Int status = reader_->getHeader(header_->observer, header_->project,
119                                  header_->antennaname, header_->antennaposition,
[1410]120                                  header_->obstype,
121                                  header_->fluxunit,
122                                  header_->equinox,
[405]123                                  header_->freqref,
124                                  header_->utc, header_->reffreq,
125                                  header_->bandwidth);
126
[2]127  if (status) {
128    delete reader_;
129    reader_ = 0;
[805]130    delete header_;
131    header_ = 0;
[87]132    throw(AipsError("Failed to get header."));
[2]133  }
[405]134  if ((header_->obstype).matches("*SW*")) {
[2]135    // need robust way here - probably read ahead of next timestamp
[717]136    pushLog("Header indicates frequency switched observation.\n"
[754]137               "setting # of IFs = 1 ");
[2]138    nIF_ = 1;
[805]139    header_->obstype = String("fswitch");
[2]140  }
[405]141  // Determine Telescope and set brightness unit
[342]142
[1391]143
[342]144  Bool throwIt = False;
[878]145  Instrument inst = STAttr::convertInstrument(header_->antennaname, throwIt);
[1410]146
[342]147  if (inst==ATMOPRA || inst==TIDBINBILLA) {
[1410]148    header_->fluxunit = "K";
149  } else {
150    // downcase for use with Quanta
151    if (header_->fluxunit == "JY") {
152      header_->fluxunit = "Jy";
153    }
[342]154  }
[1188]155  STAttr stattr;
156  header_->poltype = stattr.feedPolType(inst);
[405]157  header_->nif = nIF_;
158  header_->epoch = "UTC";
[805]159  // *** header_->frequnit = "Hz"
[2]160  // Apply selection criteria.
161  Vector<Int> ref;
[332]162  ifOffset_ = 0;
163  if (whichIF>=0) {
164    if (whichIF>=0 && whichIF<nIF_) {
[1060]165      ifs = False;
166      ifs(whichIF) = True;
[805]167      header_->nif = 1;
168      nIF_ = 1;
169      ifOffset_ = whichIF;
[332]170    } else {
[805]171      delete reader_;
172      reader_ = 0;
173      delete header_;
174      header_ = 0;
175      throw(AipsError("Illegal IF selection"));
[332]176    }
177  }
178  beamOffset_ = 0;
179  if (whichBeam>=0) {
[805]180    if (whichBeam>=0 && whichBeam<nBeam_) {
[1060]181      beams = False;
182      beams(whichBeam) = True;
[805]183      header_->nbeam = 1;
184      nBeam_ = 1;
185      beamOffset_ = whichBeam;
186    } else {
187      delete reader_;
188      reader_ = 0;
189      delete header_;
190      header_ = 0;
191      throw(AipsError("Illegal Beam selection"));
192    }
[332]193  }
194  Vector<Int> start(nIF_, 1);
195  Vector<Int> end(nIF_, 0);
[1450]196  reader_->select(beams, ifs, start, end, ref, True, haveXPol_[0]);
[846]197  table_->setHeader(*header_);
[1391]198  //For MS, add the location of POINTING of the input MS so one get
199  //pointing data from there, if necessary.
200  //Also find nrow in MS
201  nInDataRow = 0;
202  if (format == "MS2") {
203    Path datapath(inName);
204    String ptTabPath = datapath.absoluteName();
205    Table inMS(ptTabPath);
206    nInDataRow = inMS.nrow();
207    ptTabPath.append("/POINTING");
208    table_->table().rwKeywordSet().define("POINTING", ptTabPath);
209    if ((header_->antennaname).matches("GBT")) {
210      String GOTabPath = datapath.absoluteName();
211      GOTabPath.append("/GBT_GO");
212      table_->table().rwKeywordSet().define("GBT_GO", GOTabPath);
213    }
214  }
215     
[805]216}
[405]217
[805]218void STFiller::close( )
219{
220  delete reader_;reader_=0;
221  delete header_;header_=0;
222  table_ = 0;
[2]223}
224
[805]225int asap::STFiller::read( )
226{
[87]227  int status = 0;
228
[1391]229  Double min = 0.0;
230  Double max = nInDataRow;
[1438]231#ifdef HAS_ALMA
232  ProgressMeter fillpm(min, max, "Data importing progress");
233#endif
[1450]234  PKSrecord pksrec;
[1391]235  int n = 0;
[805]236  while ( status == 0 ) {
[1450]237    status = reader_->read(pksrec);
[805]238    if ( status != 0 ) break;
[1391]239    n += 1;
240   
[1081]241    Regex filterrx(".*[SL|PA]$");
[1110]242    Regex obsrx("^AT.+");
[1450]243    if ( header_->antennaname.matches(obsrx) &&
244         pksrec.obsType.matches(filterrx)) {
[1110]245        //cerr << "ignoring paddle scan" << endl;
[1081]246        continue;
247    }
[805]248    TableRow row(table_->table());
249    TableRecord& rec = row.record();
[999]250    // fields that don't get used and are just passed through asap
251    RecordFieldPtr<Array<Double> > srateCol(rec, "SCANRATE");
[1450]252    *srateCol = pksrec.scanRate;
[999]253    RecordFieldPtr<Array<Double> > spmCol(rec, "SRCPROPERMOTION");
[1450]254    *spmCol = pksrec.srcPM;
[999]255    RecordFieldPtr<Array<Double> > sdirCol(rec, "SRCDIRECTION");
[1450]256    *sdirCol = pksrec.srcDir;
[999]257    RecordFieldPtr<Double> svelCol(rec, "SRCVELOCITY");
[1450]258    *svelCol = pksrec.srcVel;
[999]259    // the real stuff
[972]260    RecordFieldPtr<Int> fitCol(rec, "FIT_ID");
261    *fitCol = -1;
[805]262    RecordFieldPtr<uInt> scanoCol(rec, "SCANNO");
[1450]263    *scanoCol = pksrec.scanNo-1;
[805]264    RecordFieldPtr<uInt> cyclenoCol(rec, "CYCLENO");
[1450]265    *cyclenoCol = pksrec.cycleNo-1;
[805]266    RecordFieldPtr<Double> mjdCol(rec, "TIME");
[1450]267    *mjdCol = pksrec.mjd;
[805]268    RecordFieldPtr<Double> intCol(rec, "INTERVAL");
[1450]269    *intCol = pksrec.interval;
[805]270    RecordFieldPtr<String> srcnCol(rec, "SRCNAME");
271    RecordFieldPtr<Int> srctCol(rec, "SRCTYPE");
[1391]272    RecordFieldPtr<String> fieldnCol(rec, "FIELDNAME");
[1450]273    *fieldnCol = pksrec.fieldName;
[805]274    // try to auto-identify if it is on or off.
[1424]275    Regex rx(".*(e|w|_R)$");
[942]276    Regex rx2("_S$");
[1450]277    Int match = pksrec.srcName.matches(rx);
[805]278    if (match) {
[1450]279      *srcnCol = pksrec.srcName;
[805]280    } else {
[1450]281      *srcnCol = pksrec.srcName.before(rx2);
[805]282    }
[1450]283    //*srcnCol = pksrec.srcName;//.before(rx2);
[805]284    *srctCol = match;
285    RecordFieldPtr<uInt> beamCol(rec, "BEAMNO");
[1450]286    *beamCol = pksrec.beamNo-beamOffset_-1;
[805]287    RecordFieldPtr<Int> rbCol(rec, "REFBEAMNO");
288    Int rb = -1;
[1450]289    if (nBeam_ > 1 ) rb = pksrec.refBeam-1;
[805]290    *rbCol = rb;
291    RecordFieldPtr<uInt> ifCol(rec, "IFNO");
[1450]292    *ifCol = pksrec.IFno-ifOffset_- 1;
[805]293    uInt id;
294    /// @todo this has to change when nchan isn't global anymore
295    id = table_->frequencies().addEntry(Double(header_->nchan/2),
[1450]296                                            pksrec.refFreq, pksrec.freqInc);
[805]297    RecordFieldPtr<uInt> mfreqidCol(rec, "FREQ_ID");
298    *mfreqidCol = id;
[25]299
[1450]300    id = table_->molecules().addEntry(pksrec.restFreq);
[805]301    RecordFieldPtr<uInt> molidCol(rec, "MOLECULE_ID");
302    *molidCol = id;
[414]303
[1450]304    id = table_->tcal().addEntry(pksrec.tcalTime, pksrec.tcal);
[805]305    RecordFieldPtr<uInt> mcalidCol(rec, "TCAL_ID");
306    *mcalidCol = id;
[1450]307    id = table_->weather().addEntry(pksrec.temperature, pksrec.pressure,
308                                    pksrec.humidity, pksrec.windSpeed,
309                                    pksrec.windAz);
[805]310    RecordFieldPtr<uInt> mweatheridCol(rec, "WEATHER_ID");
311    *mweatheridCol = id;
312    RecordFieldPtr<uInt> mfocusidCol(rec, "FOCUS_ID");
[1450]313    id = table_->focus().addEntry(pksrec.focusAxi, pksrec.focusTan,
314                                  pksrec.focusRot);
[805]315    *mfocusidCol = id;
316    RecordFieldPtr<Array<Double> > dirCol(rec, "DIRECTION");
[1450]317    *dirCol = pksrec.direction;
[922]318    RecordFieldPtr<Float> azCol(rec, "AZIMUTH");
[1450]319    *azCol = pksrec.azimuth;
[922]320    RecordFieldPtr<Float> elCol(rec, "ELEVATION");
[1450]321    *elCol = pksrec.elevation;
[405]322
[805]323    RecordFieldPtr<Float> parCol(rec, "PARANGLE");
[1450]324    *parCol = pksrec.parAngle;
[332]325
[805]326    RecordFieldPtr< Array<Float> > specCol(rec, "SPECTRA");
327    RecordFieldPtr< Array<uChar> > flagCol(rec, "FLAGTRA");
328    RecordFieldPtr< uInt > polnoCol(rec, "POLNO");
[405]329
[805]330    RecordFieldPtr< Array<Float> > tsysCol(rec, "TSYS");
331    // Turn the (nchan,npol) matrix and possible complex xPol vector
332    // into 2-4 rows in the scantable
333    Vector<Float> tsysvec(1);
[1450]334    // Why is pksrec.spectra.ncolumn() == 3 for haveXPol_ == True
335    uInt npol = (pksrec.spectra.ncolumn()==1 ? 1: 2);
[805]336    for ( uInt i=0; i< npol; ++i ) {
[1450]337      tsysvec = pksrec.tsys(i);
[805]338      *tsysCol = tsysvec;
339      *polnoCol = i;
[405]340
[1450]341      *specCol = pksrec.spectra.column(i);
342      *flagCol = pksrec.flagtra.column(i);
[805]343      table_->table().addRow();
344      row.put(table_->table().nrow()-1, rec);
[2]345    }
[1060]346    if ( haveXPol_[0] ) {
[805]347      // no tsys given for xpol, so emulate it
[1450]348      tsysvec = sqrt(pksrec.tsys[0]*pksrec.tsys[1]);
[805]349      *tsysCol = tsysvec;
350      // add real part of cross pol
351      *polnoCol = 2;
[1450]352      Vector<Float> r(real(pksrec.xPol));
[805]353      *specCol = r;
354      // make up flags from linears
355      /// @fixme this has to be a bitwise or of both pols
[1450]356      *flagCol = pksrec.flagtra.column(0);// | pksrec.flagtra.column(1);
[805]357      table_->table().addRow();
358      row.put(table_->table().nrow()-1, rec);
359      // ad imaginary part of cross pol
360      *polnoCol = 3;
[1450]361      Vector<Float> im(imag(pksrec.xPol));
[805]362      *specCol = im;
363      table_->table().addRow();
364      row.put(table_->table().nrow()-1, rec);
[2]365    }
[1438]366#ifdef HAS_ALMA
367    fillpm._update(n);
368#endif
[805]369  }
370  if (status > 0) {
371    close();
372    throw(AipsError("Reading error occured, data possibly corrupted."));
373  }
[1438]374#ifdef HAS_ALMA
375  fillpm.done();
376#endif
[2]377  return status;
378}
[805]379
380}//namespace asap
Note: See TracBrowser for help on using the repository browser.