source: trunk/src/STMath.h@ 904

Last change on this file since 904 was 896, checked in by mar637, 19 years ago

enable polarimetry in asap2

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.7 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 <string>
16#include <map>
17
18#include <casa/aips.h>
19#include <casa/Utilities/CountedPtr.h>
20#include <casa/BasicSL/String.h>
21#include <casa/Arrays/Vector.h>
22#include <scimath/Mathematics/InterpolateArray1D.h>
23
24#include "Scantable.h"
25#include "STDefs.h"
26#include "STPol.h"
27#include "Logger.h"
28
29namespace asap {
30
31/**
32Mathmatical operations on Scantable objects
33
34@author Malte Marquarding
35*/
36class STMath : private Logger {
37public:
38
39 typedef casa::InterpolateArray1D<casa::Double,
40 casa::Float>::InterpolationMethod imethod;
41
42 typedef std::map<std::string, imethod> imap;
43
44 STMath(bool insitu=true);
45
46 ~STMath();
47
48 /**
49 * set the @attr insitu attribute
50 * @param b
51 */
52 bool insitu() const { return insitu_;};
53 void setInsitu(bool b) { insitu_ = b; };
54
55 casa::CountedPtr<Scantable>
56 average( const std::vector<casa::CountedPtr<Scantable> >& in,
57 const std::vector<bool>& mask = std::vector<bool>(),
58 const std::string& weight = "NONE",
59 const std::string& avmode = "SCAN",
60 bool alignfreq = false );
61
62 casa::CountedPtr<Scantable>
63 unaryOperate( const casa::CountedPtr<Scantable>& in, float val,
64 const std::string& mode, bool tsys=false );
65
66 casa::CountedPtr<Scantable> quotient( const casa::CountedPtr<Scantable>& in,
67 const std::string& mode = "NEAREST",
68 bool preserve = true );
69
70 casa::CountedPtr<Scantable>
71 freqSwitch( const casa::CountedPtr<Scantable>& in );
72
73 std::vector<float> statistic(const casa::CountedPtr<Scantable>& in,
74 const std::vector<bool>& mask,
75 const std::string& which);
76
77 casa::CountedPtr<Scantable> bin( const casa::CountedPtr<Scantable>& in,
78 int width=5);
79 casa::CountedPtr<Scantable>
80 resample(const casa::CountedPtr<Scantable>& in,
81 const std::string& method, float width);
82
83 casa::CountedPtr<Scantable>
84 smooth(const casa::CountedPtr<Scantable>& in, const std::string& kernel,
85 float width);
86
87 casa::CountedPtr<Scantable>
88 gainElevation(const casa::CountedPtr<Scantable>& in,
89 const std::vector<float>& coeff,
90 const std::string& fileName,
91 const std::string& method);
92 casa::CountedPtr<Scantable>
93 convertFlux(const casa::CountedPtr<Scantable>& in, float d,
94 float etaap, float jyperk);
95
96 casa::CountedPtr<Scantable> opacity(const casa::CountedPtr<Scantable>& in,
97 float tau);
98
99 casa::CountedPtr<Scantable>
100 merge(const std::vector<casa::CountedPtr<Scantable> >& in);
101
102 casa::CountedPtr<Scantable>
103 invertPhase( const casa::CountedPtr<Scantable>& in);
104 casa::CountedPtr<Scantable>
105 rotateXYPhase( const casa::CountedPtr<Scantable>& in, float phase);
106 casa::CountedPtr<Scantable>
107 rotateLinPolPhase( const casa::CountedPtr<Scantable>& in, float phase);
108
109 /// @todo frequency alignment
110
111 casa::CountedPtr<Scantable>
112 swapPolarisations(const casa::CountedPtr<Scantable>& in);
113
114private:
115 casa::CountedPtr<Scantable> applyToPol( const casa::CountedPtr<Scantable>& in,
116 STPol::polOperation fptr,
117 casa::Float phase);
118
119 static imethod stringToIMethod(const std::string& in);
120 static WeightType stringToWeight(const std::string& in);
121
122 void scaleByVector(casa::Table& in,
123 const casa::Vector<casa::Float>& factor,
124 bool dotsys);
125
126 void scaleFromAsciiTable(casa::Table& in, const std::string& filename,
127 const std::string& method,
128 const casa::Vector<casa::Float>& xout,
129 bool dotsys);
130
131 void scaleFromTable(casa::Table& in, const casa::Table& table,
132 const std::string& method,
133 const casa::Vector<casa::Float>& xout, bool dotsys);
134
135 void convertBrightnessUnits(casa::CountedPtr<Scantable>& in,
136 bool tokelvin, float cfac);
137
138 casa::CountedPtr< Scantable >
139 getScantable(const casa::CountedPtr< Scantable >& in, bool droprows);
140
141 casa::MaskedArray<casa::Float>
142 maskedArray( const casa::Vector<casa::Float>& s,
143 const casa::Vector<casa::uChar>& f );
144 casa::Vector<casa::uChar>
145 flagsFromMA(const casa::MaskedArray<casa::Float>& ma);
146
147 bool insitu_;
148};
149
150}
151#endif
Note: See TracBrowser for help on using the repository browser.