source: tags/casa3.2.0asap/src/RowAccumulator.h@ 2747

Last change on this file since 2747 was 2142, checked in by WataruKawasaki, 13 years ago

merged from bugfixes in trunk (r2141)

File size: 4.1 KB
Line 
1//
2// C++ Interface: RowAccumulator
3//
4// Description:
5//
6//
7// Author: Malte Marquarding <Malte.Marquarding@csiro.au>, (C) 2005
8//
9// Copyright: See COPYING file that comes with this distribution
10//
11//
12#ifndef ASAPROWACCUMULATOR_H
13#define ASAPROWACCUMULATOR_H
14
15#include <math.h>
16#include <casa/aips.h>
17#include <casa/Arrays/Vector.h>
18#include <casa/Arrays/MaskedArray.h>
19#include "STDefs.h"
20
21namespace asap {
22/**
23 * This class accumulates spectra and weights and returns the averaged data
24 * @brief Class for averaging of spectra
25 * @author Malte Marquarding
26 * @date $Date:$
27 * @version
28 */
29class RowAccumulator {
30
31public:
32
33 /**
34 * Constructor taking a weight type as defined in @ref STDefs
35 */
36 explicit RowAccumulator(WeightType wt = asap::W_NONE);
37
38 ~RowAccumulator();
39
40 /**
41 * add a new "row" to the accumulator
42 * @param v the spectrum
43 * @param m the mask for the spectrum
44 * @param tsys the Tsys corresponing to the spectrum
45 * @param interval the intergration time
46 * @param time the time of the observation
47 */
48 void add(const casa::Vector<casa::Float>& v,
49 const casa::Vector<casa::Bool>& m,
50 const casa::Vector<casa::Float>& tsys,
51 const casa::Double interval,
52 const casa::Double time);
53 /**
54 * Also set a user mask which get combined with the individual masks
55 * from the spectra
56 * @param m a boolean mask of teh same length as the spectrum
57 */
58 void setUserMask(const casa::Vector<casa::Bool>& m);
59 /**
60 * Get the spectrum. Applies the normalisation (averaging)
61 * @return the spectrum vector
62 */
63 casa::Vector<casa::Float> getSpectrum() const;
64 /**
65 * Get the Tsys. Applies the normalisation (averaging)
66 * @return the Tsys vector
67 */
68 casa::Vector<casa::Float> getTsys() const;
69 /**
70 * Get the spectrum's mask. Applies the normalisation (averaging)
71 * @return the mask vector
72 */
73 casa::Vector<casa::Bool> getMask() const;
74 /**
75 * Get the total interval.
76 * @return the integration time
77 */
78 casa::Double getInterval() const;
79 /**
80 * Get the time of the observation. Retrieves the "mean" time.
81 * @return the integration time
82 */
83 casa::Double getTime() const;
84 /**
85 * Reset the acummulator to the state at construction.
86 */
87 void reset(const casa::uInt size=0, const casa::uInt tsysSize=0);
88 void initialize(const casa::uInt size, const casa::uInt tsysSize);
89 /**
90 * check the initialization state
91 */
92 casa::Bool state() const;
93 /**
94 * replace NaN values with (normal) values at the same channels in the given spetrum.
95 * (CAS-2776; 2011/04/07 by Wataru Kawasaki)
96 */
97 void replaceNaN();
98
99private:
100 void addSpectrum(const casa::Vector<casa::Float>& v,
101 const casa::Vector<casa::Bool>& m,
102 const casa::Vector<casa::Float>& tsys,
103 const casa::Double interval,
104 const casa::Double time);
105 void doAddSpectrum(const casa::Vector<casa::Float>& v,
106 const casa::Vector<casa::Bool>& m,
107 const casa::Vector<casa::Float>& tsys,
108 const casa::Double interval,
109 const casa::Double time,
110 const casa::Bool inverseMask);
111 casa::Float getTotalWeight(const casa::MaskedArray<casa::Float>& data,
112 const casa::Vector<casa::Float>& tsys,
113 const casa::Double interval,
114 const casa::Double time,
115 const casa::Bool inverseMask);
116 casa::Float addTsys(const casa::Vector<casa::Float>& v, casa::Bool inverseMask);
117 casa::Float addInterval(casa::Double inter, casa::Bool inverseMask);
118 void addTime(casa::Double t, casa::Bool inverseMask);
119
120 WeightType weightType_;
121 casa::Bool initialized_;
122 //these are Vectors
123 casa::MaskedArray<casa::Float> spectrum_;
124 casa::MaskedArray<casa::Float> weightSum_;
125 casa::MaskedArray<casa::uInt> n_;
126
127 //these three are used for normalise() (CAS-2776; 2011/04/07 by WK)
128 casa::MaskedArray<casa::Float> spectrumNoMask_;
129 casa::MaskedArray<casa::Float> weightSumNoMask_;
130 casa::MaskedArray<casa::uInt> nNoMask_;
131
132 casa::Vector<casa::Bool> userMask_;
133
134 casa::Vector<casa::Float> tsysSum_, tsysSumNoMask_;
135 casa::Double timeSum_, timeSumNoMask_;
136 casa::Double intervalSum_, intervalSumNoMask_;
137};
138
139}
140#endif
Note: See TracBrowser for help on using the repository browser.