source: trunk/src/STMathWrapper.h @ 1066

Last change on this file since 1066 was 1066, checked in by mar637, 18 years ago

Enhancement Ticket #50; arbitrary quotients.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.8 KB
Line 
1//
2// C++ Interface: STMathWrapper
3//
4// Description:
5//
6//
7// Author: Malte Marquarding <Malte.Marquarding@csiro.au>, (C) 2006
8//
9// Copyright: See COPYING file that comes with this distribution
10//
11//
12#ifndef ASAPSTMATHWRAPPER_H
13#define ASAPSTMATHWRAPPER_H
14
15#include <vector>
16#include <string>
17
18#include <casa/Utilities/CountedPtr.h>
19
20#include "STMath.h"
21#include "Scantable.h"
22#include "ScantableWrapper.h"
23
24namespace asap {
25
26/**
27Wrapper class to handle ScantableWrapper
28
29@author Malte Marquarding
30*/
31class STMathWrapper : public STMath {
32public:
33  STMathWrapper() {;}
34  STMathWrapper(bool insitu) : STMath(insitu) {;}
35
36  virtual ~STMathWrapper() {;}
37
38  ScantableWrapper
39    average( const std::vector<ScantableWrapper>& in,
40             const std::vector<bool>& mask,
41             const std::string& weight,
42             const std::string& avmode )
43  {
44    std::vector<casa::CountedPtr<Scantable> > sts;
45    for (unsigned int i=0; i<in.size(); ++i) sts.push_back(in[i].getCP());
46    return ScantableWrapper(STMath::average(sts, mask, weight, avmode));
47  }
48  ScantableWrapper
49    averagePolarisations( const ScantableWrapper& in,
50                          const std::vector<bool>& mask,
51                          const std::string& weight)
52  { return ScantableWrapper(STMath::averagePolarisations(in.getCP(),mask, weight));}
53
54  ScantableWrapper
55    unaryOperate( const ScantableWrapper& in, float val,
56                  const std::string& mode, bool tsys=false )
57  { return ScantableWrapper(STMath::unaryOperate(in.getCP(), val, mode, tsys)); }
58
59  ScantableWrapper autoQuotient( const ScantableWrapper& in,
60                                 const std::string& mode = "NEAREST",
61                                 bool preserve = true )
62  { return ScantableWrapper(STMath::autoQuotient(in.getCP(), mode, preserve)); }
63
64  ScantableWrapper quotient( const ScantableWrapper& on,
65                             const ScantableWrapper& off,
66                             bool preserve = true )
67  { return ScantableWrapper( STMath::quotient( on.getCP(), off.getCP(),
68                                               preserve ) ); }
69
70  ScantableWrapper
71    freqSwitch( const ScantableWrapper& in )
72  { return ScantableWrapper(STMath::freqSwitch(in.getCP())); }
73
74  std::vector<float> statistic(const ScantableWrapper& in,
75                               const std::vector<bool>& mask,
76                               const std::string& which)
77  { return STMath::statistic(in.getCP(), mask, which); }
78
79  ScantableWrapper bin( const ScantableWrapper& in, int width=5)
80  { return ScantableWrapper(STMath::bin(in.getCP(), width)); }
81
82  ScantableWrapper
83    resample(const ScantableWrapper& in,
84             const std::string& method, float width)
85  { return ScantableWrapper(STMath::resample(in.getCP(), method, width)); }
86
87  ScantableWrapper
88    smooth(const ScantableWrapper& in, const std::string& kernel, float width)
89  { return ScantableWrapper(STMath::smooth(in.getCP(), kernel, width)); }
90
91  ScantableWrapper
92    gainElevation(const ScantableWrapper& in,
93                  const std::vector<float>& coeff,
94                  const std::string& filename,
95                  const std::string& method)
96
97  { return
98      ScantableWrapper(STMath::gainElevation(in.getCP(), coeff, filename, method)); }
99
100  ScantableWrapper
101    convertFlux(const ScantableWrapper& in, float d,
102                float etaap, float jyperk)
103  { return ScantableWrapper(STMath::convertFlux(in.getCP(), d, etaap, jyperk)); }
104
105  ScantableWrapper opacity(const ScantableWrapper& in,
106                                      float tau)
107  { return ScantableWrapper(STMath::opacity(in.getCP(), tau)); }
108
109  ScantableWrapper
110    merge(const std::vector<ScantableWrapper >& in)
111
112  {
113    std::vector<casa::CountedPtr<Scantable> > sts;
114    for (unsigned int i=0; i<in.size(); ++i) sts.push_back(in[i].getCP());
115    return ScantableWrapper(STMath::merge(sts)); }
116
117  ScantableWrapper rotateXYPhase( const ScantableWrapper& in, float angle)
118  { return ScantableWrapper(STMath::rotateXYPhase(in.getCP(), angle)); }
119
120  ScantableWrapper rotateLinPolPhase( const ScantableWrapper& in, float angle)
121  { return ScantableWrapper(STMath::rotateLinPolPhase(in.getCP(), angle)); }
122
123  ScantableWrapper invertPhase( const ScantableWrapper& in )
124  { return ScantableWrapper(STMath::invertPhase(in.getCP())); }
125
126  ScantableWrapper swapPolarisations( const ScantableWrapper& in )
127  { return ScantableWrapper(STMath::swapPolarisations(in.getCP())); }
128
129  ScantableWrapper frequencyAlign( const ScantableWrapper& in,
130                                   const std::string& refTime,
131                                   const std::string& method  )
132  { return ScantableWrapper(STMath::frequencyAlign(in.getCP())); }
133
134  ScantableWrapper convertPolarisation( const ScantableWrapper& in,
135                                        const std::string& newtype )
136  { return ScantableWrapper(STMath::convertPolarisation(in.getCP(),newtype)); }
137
138};
139
140}
141
142#endif
Note: See TracBrowser for help on using the repository browser.