source: tags/asap-4.4.0/src/STMath.h@ 3116

Last change on this file since 3116 was 3106, checked in by Takeshi Nakazato, 8 years ago

New Development: No

JIRA Issue: No

Ready for Test: Yes/No

Interface Changes: Yes/No

What Interface Changed: Please list interface changes

Test Programs: List test programs

Put in Release Notes: Yes/No

Module(s): Module Names change impacts.

Description: Describe your changes here...


Check-in asap modifications from Jim regarding casacore namespace conversion.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 17.4 KB
Line 
1//
2// C++ Interface: STMath
3//
4// Description:
5//
6//
7// Author: Malte Marquarding <asap@atnf.csiro.au>, (C) 2006
8//
9// Copyright: See COPYING file that comes with this distribution
10//
11//
12#ifndef ASAPSTMATH_H
13#define ASAPSTMATH_H
14
15#include <map>
16#include <string>
17#include <iostream>
18
19#include <casa/aips.h>
20#include <casa/Arrays/Vector.h>
21#include <casa/BasicSL/String.h>
22#include <casa/Utilities/CountedPtr.h>
23
24#include <scimath/Mathematics/InterpolateArray1D.h>
25
26#include "Scantable.h"
27#include "STDefs.h"
28#include "STPol.h"
29
30namespace asap {
31
32/**
33 * Mathmatical operations on Scantable objects
34 * @author Malte Marquarding
35*/
36class STMath {
37public:
38 // typedef for long method name
39 typedef casacore::InterpolateArray1D<casacore::Double,
40 casacore::Float>::InterpolationMethod imethod;
41
42 // typedef for std::map
43 typedef std::map<std::string, imethod> imap;
44
45/**
46 * whether to operate on the given Scantable or return a new one
47 * @param insitu the toggle for this behaviour
48 */
49 explicit STMath(bool insitu=true);
50
51 virtual ~STMath();
52
53 /**
54 * get the currnt @attr inistu_ state
55 */
56 bool insitu() const { return insitu_;};
57
58 /**
59 * set the currnt @attr inistu state
60 * @param b the new state
61 */
62 void setInsitu(bool b) { insitu_ = b; };
63
64
65 /**
66 * average a vector of Scantables
67 * @param in the vector of Scantables to average
68 * @param mask an optional mask to apply on specific weights
69 * @param weight weighting scheme
70 * @param avmode the mode ov averaging. Per "SCAN" or "ALL".
71 * @return a casacore::CountedPtr<Scantable> which either holds a new Scantable
72 * or returns the imput pointer.
73 */
74 casacore::CountedPtr<Scantable>
75 average( const std::vector<casacore::CountedPtr<Scantable> >& in,
76 const std::vector<bool>& mask = std::vector<bool>(),
77 const std::string& weight = "NONE",
78 const std::string& avmode = "SCAN");
79
80 /**
81 * median average a vector of Scantables. See also STMath::average
82 * @param in the Scantable to average
83 * @param mode the averaging mode. Currently only "MEDIAN"
84 * @param avmode the mode ov averaging. Per "SCAN" or "ALL".
85 * @return a casacore::CountedPtr<Scantable> which either holds a new Scantable
86 * or returns the imput pointer.
87 */
88 casacore::CountedPtr<Scantable>
89 averageChannel( const casacore::CountedPtr<Scantable> & in,
90 const std::string& mode = "MEDIAN",
91 const std::string& avmode = "SCAN");
92
93 /**
94 * Average polarisations together. really only useful if only linears are
95 * available.
96 * @param in the input Scantable
97 * @param mask an optional mask if weight allows one
98 * @param weight weighting scheme
99 * @return
100 */
101 casacore::CountedPtr< Scantable >
102 averagePolarisations( const casacore::CountedPtr< Scantable > & in,
103 const std::vector<bool>& mask,
104 const std::string& weight );
105
106 /**
107 * Average beams together.
108 * @param in the input Scantable
109 * @param mask an optional mask if weight allows one
110 * @param weight weighting scheme
111 * @return
112 */
113 casacore::CountedPtr< Scantable >
114 averageBeams( const casacore::CountedPtr< Scantable > & in,
115 const std::vector<bool>& mask,
116 const std::string& weight );
117
118 casacore::CountedPtr<Scantable>
119 unaryOperate( const casacore::CountedPtr<Scantable>& in, float val,
120 const std::string& mode, bool tsys=false,
121 bool skip_flaggedrow=false );
122
123 // array operation
124 casacore::CountedPtr<Scantable>
125 arrayOperate( const casacore::CountedPtr<Scantable>& in,
126 const std::vector<float> val,
127 const std::string& mode,
128 const std::string& opmode="channel",
129 bool tsys=false,
130 bool skip_flaggedrow=false );
131
132 // channel operation
133 casacore::CountedPtr<Scantable>
134 arrayOperateChannel( const casacore::CountedPtr<Scantable>& in,
135 const std::vector<float> val,
136 const std::string& mode, bool tsys=false,
137 bool skip_flaggedrow=false );
138
139 // row operation
140 casacore::CountedPtr<Scantable>
141 arrayOperateRow( const casacore::CountedPtr<Scantable>& in,
142 const std::vector<float> val,
143 const std::string& mode, bool tsys=false,
144 bool skip_flaggedrow=false );
145
146 // 2d array operation
147 casacore::CountedPtr<Scantable>
148 array2dOperate( const casacore::CountedPtr<Scantable>& in,
149 const std::vector< std::vector<float> > val,
150 const std::string& mode, bool tsys=false );
151
152 casacore::CountedPtr<Scantable>
153 binaryOperate( const casacore::CountedPtr<Scantable>& left,
154 const casacore::CountedPtr<Scantable>& right,
155 const std::string& mode);
156
157 casacore::CountedPtr<Scantable> autoQuotient(const casacore::CountedPtr<Scantable>& in,
158 const std::string& mode = "NEAREST",
159 bool preserve = true);
160
161 casacore::CountedPtr<Scantable> quotient( const casacore::CountedPtr<Scantable>& on,
162 const casacore::CountedPtr<Scantable>& off,
163 bool preserve = true );
164
165 /**
166 * Calibrate total power scans (translated from GBTIDL)
167 * @param calon uncalibrated Scantable with CAL noise signal
168 * @param caloff uncalibrated Scantable with no CAL signal
169 * @param tcal optional scalar Tcal, CAL temperature (K)
170 * @return casacore::CountedPtr<Scantable> which holds a calibrated Scantable
171 * (spectrum - average of the two CAL on and off spectra;
172 * tsys - mean Tsys = <caloff>*Tcal/<calon-caloff> + Tcal/2)
173 */
174 casacore::CountedPtr<Scantable> dototalpower( const casacore::CountedPtr<Scantable>& calon,
175 const casacore::CountedPtr<Scantable>& caloff,
176 casacore::Float tcal=1.0 );
177
178 /**
179 * Combine signal and reference scans (translated from GBTIDL)
180 * @param sig Scantable which contains signal scans
181 * @param ref Scantable which contains reference scans
182 * @param smoothref optional Boxcar smooth width of the reference scans
183 * default: no smoothing (=1)
184 * @param tsysv optional scalar Tsys value at the zenith, required to
185 * set tau, as well
186 * @param tau optional scalar Tau value
187 * @return casacore::CountedPtr<Scantable> which holds combined scans
188 * (spectrum = (sig-ref)/ref * Tsys )
189 */
190 casacore::CountedPtr<Scantable> dosigref( const casacore::CountedPtr<Scantable>& sig,
191 const casacore::CountedPtr<Scantable>& ref,
192 int smoothref=1,
193 casacore::Float tsysv=0.0,
194 casacore::Float tau=0.0 );
195
196 /**
197 * Calibrate GBT Nod scan pairs (translated from GBTIDL)
198 * @param s Scantable which contains Nod scans
199 * @param scans Vector of scan numbers
200 * @param smoothref optional Boxcar smooth width of the reference scans
201 * @param tsysv optional scalar Tsys value at the zenith, required to
202 * set tau, as well
203 * @param tau optional scalar Tau value
204 * @param tcal optional scalar Tcal, CAL temperature (K)
205 * @return casacore::CountedPtr<Scantable> which holds calibrated scans
206 */
207 casacore::CountedPtr<Scantable> donod( const casacore::CountedPtr<Scantable>& s,
208 const std::vector<int>& scans,
209 int smoothref=1,
210 casacore::Float tsysv=0.0,
211 casacore::Float tau=0.0,
212 casacore::Float tcal=0.0 );
213
214 /**
215 * Calibrate frequency switched scans (translated from GBTIDL)
216 * @param s Scantable which contains frequency switched scans
217 * @param scans Vector of scan numbers
218 * @param smoothref optional Boxcar smooth width of the reference scans
219 * @param tsysv optional scalar Tsys value at the zenith, required to
220 * set tau, as well
221 * @param tau optional scalar Tau value
222 * @param tcal optional scalar Tcal, CAL temperature (K)
223 * @return casacore::CountedPtr<Scantable> which holds calibrated scans
224 */
225 casacore::CountedPtr<Scantable> dofs( const casacore::CountedPtr<Scantable>& s,
226 const std::vector<int>& scans,
227 int smoothref=1,
228 casacore::Float tsysv=0.0,
229 casacore::Float tau=0.0,
230 casacore::Float tcal=0.0 );
231
232 /**
233 * Calibrate data with Chopper-Wheel like calibration method
234 * which adopts position switching by antenna motion,
235 * wobbler (nutator) switching and On-The-Fly observation.
236 *
237 * The method is applicable to APEX, and other telescopes other than GBT.
238 *
239 * @param a Scantable which contains ON and OFF scans
240 * @param a string that indicates calibration mode
241 * @param a string that indicates antenna name
242 **/
243 casacore::CountedPtr<Scantable> cwcal( const casacore::CountedPtr<Scantable>& s,
244 const casacore::String calmode,
245 const casacore::String antname );
246
247 /**
248 * Calibrate frequency switched scans with Chopper-Wheel like
249 * calibration method.
250 *
251 * The method is applicable to APEX, and other telescopes other than GBT.
252 *
253 * @param a Scantable which contains ON and OFF scans
254 * @param a string that indicates antenna name
255 **/
256 casacore::CountedPtr<Scantable> cwcalfs( const casacore::CountedPtr<Scantable>& s,
257 const casacore::String antname );
258
259
260 /**
261 * Folding frequency-switch data
262 * @param sig
263 * @param ref
264 * @param choffset
265 **/
266 casacore::CountedPtr<Scantable> dofold( const casacore::CountedPtr<Scantable> &sig,
267 const casacore::CountedPtr<Scantable> &ref,
268 casacore::Double choffset,
269 casacore::Double choffset2 = 0.0 );
270
271 /**
272 * ALMA calibration
273 **/
274 casacore::CountedPtr<Scantable> almacal( const casacore::CountedPtr<Scantable>& s,
275 const casacore::String calmode ) ;
276 casacore::CountedPtr<Scantable> almacalfs( const casacore::CountedPtr<Scantable>& s ) ;
277
278 casacore::CountedPtr<Scantable>
279 freqSwitch( const casacore::CountedPtr<Scantable>& in );
280
281 std::vector<float> statistic(const casacore::CountedPtr<Scantable>& in,
282 const std::vector<bool>& mask,
283 const std::string& which);
284
285 std::vector<float> statisticRow(const casacore::CountedPtr<Scantable>& in,
286 const std::vector<bool>& mask,
287 const std::string& which,
288 int row);
289
290 std::vector< int > minMaxChan(const casacore::CountedPtr<Scantable>& in,
291 const std::vector<bool>& mask,
292 const std::string& which);
293
294 casacore::CountedPtr<Scantable> bin( const casacore::CountedPtr<Scantable>& in,
295 int width=5);
296 casacore::CountedPtr<Scantable>
297 resample(const casacore::CountedPtr<Scantable>& in,
298 const std::string& method, float width);
299
300 casacore::CountedPtr<Scantable>
301 smooth(const casacore::CountedPtr<Scantable>& in, const std::string& kernel,
302 float width, int order=2);
303
304 casacore::CountedPtr<Scantable>
305 gainElevation(const casacore::CountedPtr<Scantable>& in,
306 const std::vector<float>& coeff,
307 const std::string& fileName,
308 const std::string& method);
309 casacore::CountedPtr<Scantable>
310 convertFlux(const casacore::CountedPtr<Scantable>& in, float d,
311 float etaap, float jyperk);
312
313 casacore::CountedPtr<Scantable> opacity(const casacore::CountedPtr<Scantable>& in,
314 const std::vector<float>& tau);
315
316 casacore::CountedPtr<Scantable>
317 merge(const std::vector<casacore::CountedPtr<Scantable> >& in,
318 const std::string &freqTol = "");
319
320 casacore::CountedPtr<Scantable>
321 invertPhase( const casacore::CountedPtr<Scantable>& in);
322
323 casacore::CountedPtr<Scantable>
324 rotateXYPhase( const casacore::CountedPtr<Scantable>& in, float phase);
325
326 casacore::CountedPtr<Scantable>
327 rotateLinPolPhase( const casacore::CountedPtr<Scantable>& in, float phase);
328
329 casacore::CountedPtr<Scantable>
330 swapPolarisations(const casacore::CountedPtr<Scantable>& in);
331
332 casacore::CountedPtr<Scantable>
333 frequencyAlign( const casacore::CountedPtr<Scantable>& in,
334 const std::string& refTime = "",
335 const std::string& method = "cubic" );
336
337 casacore::CountedPtr<Scantable>
338 convertPolarisation( const casacore::CountedPtr<Scantable>& in,
339 const std::string& newtype);
340
341 casacore::CountedPtr<Scantable>
342 mxExtract( const casacore::CountedPtr<Scantable>& in,
343 const std::string& srctype = "on");
344
345 /**
346 * "hard" flag the data, this flags everything selected in setSelection()
347 * @param frequency the frequency to remove
348 * @param width the number of lags to flag left to the side of the frequency
349 */
350 casacore::CountedPtr<Scantable>
351 lagFlag( const casacore::CountedPtr<Scantable>& in, double start,
352 double end, const std::string& mode="frequency");
353
354 std::vector<float>
355 fft( const casacore::CountedPtr<Scantable>& in,
356 const std::vector<int>& whichrow,
357 bool getRealImag=false );
358
359 // test for average spectra with different channel/resolution
360 casacore::CountedPtr<Scantable>
361 new_average( const std::vector<casacore::CountedPtr<Scantable> >& in,
362 const bool& compel,
363 const std::vector<bool>& mask = std::vector<bool>(),
364 const std::string& weight = "NONE",
365 const std::string& avmode = "SCAN" )
366 throw (casacore::AipsError) ;
367
368private:
369 casacore::CountedPtr<Scantable> applyToPol( const casacore::CountedPtr<Scantable>& in,
370 STPol::polOperation fptr,
371 casacore::Float phase);
372
373 static imethod stringToIMethod(const std::string& in);
374 static WeightType stringToWeight(const std::string& in);
375
376 void scaleByVector(casacore::Table& in,
377 const casacore::Vector<casacore::Float>& factor,
378 bool dotsys);
379
380 void scaleFromAsciiTable(casacore::Table& in, const std::string& filename,
381 const std::string& method,
382 const casacore::Vector<casacore::Float>& xout,
383 bool dotsys);
384
385 void scaleFromTable(casacore::Table& in, const casacore::Table& table,
386 const std::string& method,
387 const casacore::Vector<casacore::Float>& xout, bool dotsys);
388
389 void convertBrightnessUnits(casacore::CountedPtr<Scantable>& in,
390 bool tokelvin, float cfac);
391
392 casacore::CountedPtr< Scantable >
393 smoothOther( const casacore::CountedPtr< Scantable >& in,
394 const std::string& kernel,
395 float width, int order=2 );
396
397 casacore::CountedPtr< Scantable >
398 getScantable(const casacore::CountedPtr< Scantable >& in, bool droprows);
399
400 casacore::MaskedArray<casacore::Float>
401 maskedArray( const casacore::Vector<casacore::Float>& s,
402 const casacore::Vector<casacore::uChar>& f );
403 casacore::MaskedArray<casacore::Double>
404 maskedArray( const casacore::Vector<casacore::Double>& s,
405 const casacore::Vector<casacore::uChar>& f );
406 casacore::Vector<casacore::uChar>
407 flagsFromMA(const casacore::MaskedArray<casacore::Float>& ma);
408
409 // Frequency switching
410 void calibrateFS( casacore::CountedPtr<Scantable> &sig,
411 casacore::CountedPtr<Scantable> &ref,
412 const casacore::CountedPtr<Scantable> &rsig,
413 const casacore::CountedPtr<Scantable> &rref,
414 const casacore::CountedPtr<Scantable> &sky,
415 const casacore::CountedPtr<Scantable> &hot,
416 const casacore::CountedPtr<Scantable> &cold,
417 const casacore::Vector<casacore::uInt> &rows ) ;
418 void calibrateAPEXFS( casacore::CountedPtr<Scantable> &sig,
419 casacore::CountedPtr<Scantable> &ref,
420 const vector< casacore::CountedPtr<Scantable> > &on,
421 const vector< casacore::CountedPtr<Scantable> > &sky,
422 const vector< casacore::CountedPtr<Scantable> > &hot,
423 const vector< casacore::CountedPtr<Scantable> > &cold,
424 const casacore::Vector<casacore::uInt> &rows ) ;
425 void copyRows( casacore::Table &out,
426 const casacore::Table &in,
427 casacore::uInt startout,
428 casacore::uInt startin,
429 casacore::uInt nrow,
430 casacore::Bool copySpectra=true,
431 casacore::Bool copyFlagtra=true,
432 casacore::Bool copyTsys=true ) ;
433 casacore::CountedPtr<Scantable> averageWithinSession( casacore::CountedPtr<Scantable> &s,
434 vector<bool> &mask,
435 string weight ) ;
436
437 bool insitu_;
438};
439
440}
441#endif
Note: See TracBrowser for help on using the repository browser.