[1778] | 1 | //
|
---|
| 2 | // C++ Interface: FillerBase
|
---|
| 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 |
|
---|
[1780] | 13 | #include <casa/Containers/RecordField.h>
|
---|
[2209] | 14 | #include <tables/Tables/ExprNode.h>
|
---|
[1778] | 15 |
|
---|
[1780] | 16 | #include "FillerBase.h"
|
---|
| 17 |
|
---|
[1778] | 18 | using namespace casa;
|
---|
| 19 |
|
---|
[1786] | 20 | namespace asap {
|
---|
| 21 |
|
---|
| 22 | FillerBase::FillerBase(casa::CountedPtr<Scantable> stable) :
|
---|
| 23 | table_(stable)
|
---|
[1778] | 24 | {
|
---|
[1795] | 25 | row_ = TableRow(table_->table());
|
---|
[2230] | 26 |
|
---|
| 27 | // FIT_ID is -1 by default
|
---|
| 28 | RecordFieldPtr<Int> fitIdCol( row_.record(), "FIT_ID" ) ;
|
---|
| 29 | *fitIdCol = -1 ;
|
---|
[1778] | 30 | }
|
---|
| 31 |
|
---|
[1793] | 32 | void FillerBase::setHeader(const STHeader& header)
|
---|
| 33 | {
|
---|
| 34 | table_->setHeader(header);
|
---|
| 35 | }
|
---|
| 36 |
|
---|
[1778] | 37 | void FillerBase::setSpectrum(const Vector<Float>& spectrum,
|
---|
[1788] | 38 | const Vector<uChar>& flags,
|
---|
| 39 | const Vector<Float>& tsys)
|
---|
[1778] | 40 | {
|
---|
| 41 | RecordFieldPtr< Array<Float> > specCol(row_.record(), "SPECTRA");
|
---|
| 42 | RecordFieldPtr< Array<uChar> > flagCol(row_.record(), "FLAGTRA");
|
---|
[1788] | 43 | RecordFieldPtr< Array<Float> > tsysCol(row_.record(), "TSYS");
|
---|
| 44 |
|
---|
[1876] | 45 | //*specCol = spectrum;
|
---|
| 46 | //*flagCol = flags;
|
---|
| 47 | //*tsysCol = tsys;
|
---|
| 48 | specCol.define(spectrum);
|
---|
| 49 | flagCol.define(flags);
|
---|
| 50 | tsysCol.define(tsys);
|
---|
[1778] | 51 | }
|
---|
| 52 |
|
---|
[1803] | 53 | void FillerBase::setFlagrow(uInt flag)
|
---|
| 54 | {
|
---|
| 55 | RecordFieldPtr<uInt> flagrowCol(row_.record(), "FLAGROW");
|
---|
| 56 | *flagrowCol = flag;
|
---|
| 57 | }
|
---|
[1788] | 58 |
|
---|
| 59 | void FillerBase::setOpacity(Float opacity)
|
---|
| 60 | {
|
---|
| 61 | RecordFieldPtr<Float> tauCol(row_.record(), "OPACITY") ;
|
---|
| 62 | *tauCol = opacity ;
|
---|
| 63 | }
|
---|
| 64 |
|
---|
[1778] | 65 | void FillerBase::setIndex(uInt scanno, uInt cycleno, uInt ifno, uInt polno,
|
---|
| 66 | uInt beamno)
|
---|
| 67 | {
|
---|
| 68 | RecordFieldPtr<uInt> beamCol(row_.record(), "BEAMNO");
|
---|
| 69 | RecordFieldPtr<uInt> ifCol(row_.record(), "IFNO");
|
---|
| 70 | RecordFieldPtr<uInt> polCol(row_.record(), "POLNO");
|
---|
| 71 | RecordFieldPtr<uInt> cycleCol(row_.record(), "CYCLENO");
|
---|
[1780] | 72 | RecordFieldPtr<uInt> scanCol(row_.record(), "SCANNO");
|
---|
[1778] | 73 | *beamCol = beamno;
|
---|
| 74 | *cycleCol = cycleno;
|
---|
| 75 | *ifCol = ifno;
|
---|
| 76 | *polCol = polno;
|
---|
| 77 | *scanCol = scanno;
|
---|
| 78 | }
|
---|
| 79 |
|
---|
| 80 | void FillerBase::setFrequency(Double refpix, Double refval,
|
---|
[1780] | 81 | Double incr)
|
---|
[1778] | 82 | {
|
---|
| 83 | /// @todo this has to change when nchan isn't global anymore
|
---|
| 84 | uInt id= table_->frequencies().addEntry(refpix, refval, incr);
|
---|
| 85 | RecordFieldPtr<uInt> mfreqidCol(row_.record(), "FREQ_ID");
|
---|
| 86 | *mfreqidCol = id;
|
---|
| 87 |
|
---|
| 88 | }
|
---|
| 89 |
|
---|
| 90 |
|
---|
[1780] | 91 | void FillerBase::setMolecule(const Vector<Double>& restfreq)
|
---|
[1778] | 92 | {
|
---|
[1780] | 93 | Vector<String> tmp;
|
---|
| 94 | uInt id = table_->molecules().addEntry(restfreq, tmp, tmp);
|
---|
[1778] | 95 | RecordFieldPtr<uInt> molidCol(row_.record(), "MOLECULE_ID");
|
---|
| 96 | *molidCol = id;
|
---|
| 97 | }
|
---|
| 98 |
|
---|
[1780] | 99 | void FillerBase::setDirection(const Vector<Double>& dir,
|
---|
[1778] | 100 | Float az, Float el)
|
---|
| 101 | {
|
---|
| 102 | RecordFieldPtr<Array<Double> > dirCol(row_.record(), "DIRECTION");
|
---|
| 103 | *dirCol = dir;
|
---|
| 104 | RecordFieldPtr<Float> azCol(row_.record(), "AZIMUTH");
|
---|
| 105 | *azCol = az;
|
---|
| 106 | RecordFieldPtr<Float> elCol(row_.record(), "ELEVATION");
|
---|
| 107 | *elCol = el;
|
---|
| 108 | }
|
---|
| 109 |
|
---|
| 110 | void FillerBase::setFocus(Float pa, Float faxis,
|
---|
| 111 | Float ftan, Float frot)
|
---|
| 112 | {
|
---|
| 113 | RecordFieldPtr<uInt> mfocusidCol(row_.record(), "FOCUS_ID");
|
---|
| 114 | uInt id = table_->focus().addEntry(pa, faxis, ftan, frot);
|
---|
| 115 | *mfocusidCol = id;
|
---|
| 116 | }
|
---|
| 117 |
|
---|
[1809] | 118 | void FillerBase::setTime(Double mjd, Double interval)
|
---|
[1778] | 119 | {
|
---|
| 120 | RecordFieldPtr<Double> mjdCol(row_.record(), "TIME");
|
---|
| 121 | *mjdCol = mjd;
|
---|
| 122 | RecordFieldPtr<Double> intCol(row_.record(), "INTERVAL");
|
---|
| 123 | *intCol = interval;
|
---|
| 124 |
|
---|
| 125 | }
|
---|
| 126 |
|
---|
| 127 | void FillerBase::setWeather(Float temperature, Float pressure,
|
---|
| 128 | Float humidity,
|
---|
| 129 | Float windspeed, Float windaz)
|
---|
| 130 | {
|
---|
| 131 | uInt id = table_->weather().addEntry(temperature, pressure,
|
---|
| 132 | humidity, windspeed, windaz);
|
---|
| 133 | RecordFieldPtr<uInt> mweatheridCol(row_.record(), "WEATHER_ID");
|
---|
| 134 | *mweatheridCol = id;
|
---|
| 135 | }
|
---|
| 136 |
|
---|
| 137 | void FillerBase::setTcal(const String& tcaltime,
|
---|
| 138 | const Vector<Float>& tcal)
|
---|
| 139 | {
|
---|
| 140 | uInt id = table_->tcal().addEntry(tcaltime, tcal);
|
---|
| 141 | RecordFieldPtr<uInt> mcalidCol(row_.record(), "TCAL_ID");
|
---|
| 142 | *mcalidCol = id;
|
---|
| 143 | }
|
---|
| 144 |
|
---|
| 145 | void FillerBase::setScanRate(const Vector<Double>& srate)
|
---|
| 146 | {
|
---|
| 147 | RecordFieldPtr<Array<Double> > srateCol(row_.record(), "SCANRATE");
|
---|
| 148 | *srateCol = srate;
|
---|
| 149 | }
|
---|
| 150 |
|
---|
| 151 | void FillerBase::setReferenceBeam(Int beamno)
|
---|
| 152 | {
|
---|
| 153 | RecordFieldPtr<Int> rbCol(row_.record(), "REFBEAMNO");
|
---|
| 154 | *rbCol = beamno;
|
---|
| 155 | }
|
---|
| 156 |
|
---|
| 157 | void FillerBase::setSource(const std::string& name, Int type,
|
---|
| 158 | const std::string& fieldname,
|
---|
| 159 | const Vector<Double>& dir,
|
---|
| 160 | const Vector<Double>& propermot,
|
---|
[1780] | 161 | Double velocity)
|
---|
[1778] | 162 | {
|
---|
| 163 | RecordFieldPtr<String> srcnCol(row_.record(), "SRCNAME");
|
---|
[1780] | 164 | *srcnCol = name;
|
---|
[1778] | 165 | RecordFieldPtr<Int> srctCol(row_.record(), "SRCTYPE");
|
---|
| 166 | *srctCol = type;
|
---|
| 167 | RecordFieldPtr<String> fieldnCol(row_.record(), "FIELDNAME");
|
---|
| 168 | *fieldnCol = fieldname;
|
---|
| 169 | RecordFieldPtr<Array<Double> > spmCol(row_.record(), "SRCPROPERMOTION");
|
---|
[1780] | 170 | *spmCol = propermot;
|
---|
[1778] | 171 | RecordFieldPtr<Array<Double> > sdirCol(row_.record(), "SRCDIRECTION");
|
---|
[1780] | 172 | *sdirCol = dir;
|
---|
[1778] | 173 | RecordFieldPtr<Double> svelCol(row_.record(), "SRCVELOCITY");
|
---|
[1780] | 174 | *svelCol = velocity;
|
---|
[1778] | 175 | }
|
---|
| 176 |
|
---|
| 177 | void FillerBase::commitRow()
|
---|
| 178 | {
|
---|
| 179 | table_->table().addRow();
|
---|
| 180 | row_.put(table_->table().nrow()-1);
|
---|
| 181 | }
|
---|
| 182 |
|
---|
[2209] | 183 | void FillerBase::setWeather2(Float temperature,
|
---|
| 184 | Float pressure,
|
---|
| 185 | Float humidity,
|
---|
| 186 | Float windspeed,
|
---|
| 187 | Float windaz)
|
---|
| 188 | {
|
---|
| 189 | uInt id ;
|
---|
| 190 | Table tab = table_->weather().table() ;
|
---|
| 191 | Table subt = tab( tab.col("TEMPERATURE") == temperature \
|
---|
| 192 | && tab.col("PRESSURE") == pressure \
|
---|
| 193 | && tab.col("HUMIDITY") == humidity \
|
---|
| 194 | && tab.col("WINDSPEED") == windspeed \
|
---|
[2242] | 195 | && tab.col("WINDAZ") == windaz, 1 ) ;
|
---|
[2209] | 196 | Int nrow = tab.nrow() ;
|
---|
| 197 | Int nrowSel = subt.nrow() ;
|
---|
| 198 | if ( nrowSel == 0 ) {
|
---|
| 199 | tab.addRow( 1, True ) ;
|
---|
| 200 | TableRow row( tab ) ;
|
---|
| 201 | TableRecord &rec = row.record() ;
|
---|
| 202 | RecordFieldPtr<casa::uInt> rfpi ;
|
---|
| 203 | rfpi.attachToRecord( rec, "ID" ) ;
|
---|
| 204 | *rfpi = (uInt)nrow ;
|
---|
| 205 | RecordFieldPtr<casa::Float> rfp ;
|
---|
| 206 | rfp.attachToRecord( rec, "TEMPERATURE" ) ;
|
---|
| 207 | *rfp = temperature ;
|
---|
| 208 | rfp.attachToRecord( rec, "PRESSURE" ) ;
|
---|
| 209 | *rfp = pressure ;
|
---|
| 210 | rfp.attachToRecord( rec, "HUMIDITY" ) ;
|
---|
| 211 | *rfp = humidity ;
|
---|
| 212 | rfp.attachToRecord( rec, "WINDSPEED" ) ;
|
---|
| 213 | *rfp = windspeed ;
|
---|
| 214 | rfp.attachToRecord( rec, "WINDAZ" ) ;
|
---|
| 215 | *rfp = windaz ;
|
---|
| 216 | row.put( nrow, rec ) ;
|
---|
| 217 | id = (uInt)nrow ;
|
---|
| 218 | }
|
---|
| 219 | else {
|
---|
| 220 | ROTableColumn tc( subt, "ID" ) ;
|
---|
| 221 | id = tc.asuInt( 0 ) ;
|
---|
| 222 | }
|
---|
| 223 | RecordFieldPtr<uInt> mweatheridCol(row_.record(), "WEATHER_ID");
|
---|
| 224 | *mweatheridCol = id;
|
---|
| 225 | }
|
---|
| 226 |
|
---|
| 227 | void FillerBase::setTcal2(const String& tcaltime,
|
---|
| 228 | const Vector<Float>& tcal)
|
---|
| 229 | {
|
---|
[2242] | 230 | uInt id = 0 ;
|
---|
[2209] | 231 | Table tab = table_->tcal().table() ;
|
---|
[2242] | 232 | Table result =
|
---|
| 233 | //tab( nelements(tab.col("TCAL")) == uInt (tcal.size()) &&
|
---|
| 234 | // all(tab.col("TCAL")== tcal) &&
|
---|
| 235 | // tab.col("TIME") == tcaltime, 1 ) ;
|
---|
| 236 | tab( nelements(tab.col("TCAL")) == uInt (tcal.size()) &&
|
---|
| 237 | all(tab.col("TCAL")== tcal), 1 ) ;
|
---|
[2209] | 238 |
|
---|
[2242] | 239 | if ( result.nrow() > 0 ) {
|
---|
| 240 | ROTableColumn tmpCol( result, "ID" ) ;
|
---|
| 241 | tmpCol.getScalar( 0, id ) ;
|
---|
[2209] | 242 | }
|
---|
| 243 | else {
|
---|
[2242] | 244 | uInt rno = tab.nrow();
|
---|
| 245 | tab.addRow();
|
---|
| 246 | TableColumn idCol( tab, "ID" ) ;
|
---|
| 247 | TableColumn tctimeCol( tab, "TIME" ) ;
|
---|
| 248 | ArrayColumn<Float> tcalCol( tab, "TCAL" ) ;
|
---|
| 249 | // get last assigned _id and increment
|
---|
| 250 | if ( rno > 0 ) {
|
---|
| 251 | idCol.getScalar(rno-1, id);
|
---|
| 252 | id++;
|
---|
[2209] | 253 | }
|
---|
[2242] | 254 | tctimeCol.putScalar(rno, tcaltime);
|
---|
| 255 | tcalCol.put(rno, tcal);
|
---|
| 256 | idCol.putScalar(rno, id);
|
---|
| 257 | }
|
---|
[2209] | 258 |
|
---|
| 259 | RecordFieldPtr<uInt> mcalidCol(row_.record(), "TCAL_ID");
|
---|
| 260 | *mcalidCol = id;
|
---|
| 261 | }
|
---|
| 262 |
|
---|
[1778] | 263 | };
|
---|