source: trunk/src/RowAccumulator.h @ 3106

Last change on this file since 3106 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.

File size: 4.7 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 casacore::Vector<casacore::Float>& v,
49           const casacore::Vector<casacore::Bool>& m,
50           const casacore::Vector<casacore::Float>& tsys,
51           const casacore::Double interval,
52           const casacore::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 casacore::Vector<casacore::Bool>& m);
59  /**
60    * Get the spectrum. Applies the normalisation (averaging)
61    * @return the spectrum vector
62    */
63  casacore::Vector<casacore::Float> getSpectrum() const;
64  /**
65    * Get the Tsys. Applies the normalisation (averaging)
66    * @return the Tsys vector
67    */
68  casacore::Vector<casacore::Float> getTsys() const;
69  /**
70    * Get the spectrum's mask. Applies the normalisation (averaging)
71    * @return the mask vector
72    */
73  casacore::Vector<casacore::Bool> getMask() const;
74  /**
75    * Get the total interval.
76    * @return the integration time
77    */
78  casacore::Double getInterval() const;
79  /**
80    * Get the time of the observation. Retrieves the "mean" time.
81    * @return the integration time
82    */
83  casacore::Double getTime() const;
84  /**
85    * Reset the acummulator to the state at construction.
86    */
87  void reset(const casacore::uInt size=0, const casacore::uInt tsysSize=0);
88  void initialize(const casacore::uInt size, const casacore::uInt tsysSize);
89  /**
90    * check the initialization state
91    */
92  casacore::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 casacore::Vector<casacore::Float>& v,
101                   const casacore::Vector<casacore::Bool>& m,
102                   const casacore::Vector<casacore::Float>& tsys,
103                   const casacore::Double interval,
104                   const casacore::Double time);
105  void doAddSpectrum(const casacore::Vector<casacore::Float>& v,
106                     const casacore::Vector<casacore::Bool>& m,
107                     const casacore::Vector<casacore::Float>& tsys,
108                     const casacore::Double interval,
109                     const casacore::Double time,
110                     const casacore::Bool inverseMask);
111  void doAddSpectrum2(const casacore::Vector<casacore::Float>& v,
112                      const casacore::Vector<casacore::Bool>& m,
113                      const casacore::Vector<casacore::Float>& tsys,
114                      const casacore::Double interval,
115                      const casacore::Double time);
116  casacore::Float getTotalWeight(const casacore::MaskedArray<casacore::Float>& data,
117                             const casacore::Vector<casacore::Float>& tsys,
118                             const casacore::Double interval,
119                             const casacore::Double time,
120                             const casacore::Bool inverseMask);
121  casacore::Float addTsys(const casacore::Vector<casacore::Float>& v, casacore::Bool inverseMask);
122  casacore::Float addInterval(casacore::Double inter, casacore::Bool inverseMask);
123  void addTime(casacore::Double t, casacore::Bool inverseMask);
124
125  WeightType weightType_;
126  casacore::Bool initialized_;
127  //these are Vectors
128  casacore::MaskedArray<casacore::Float> spectrum_;
129  casacore::MaskedArray<casacore::Float> weightSum_;
130  casacore::MaskedArray<casacore::uInt> n_;
131
132  //these three are used for normalise() (CAS-2776; 2011/04/07 by WK)
133  casacore::MaskedArray<casacore::Float> spectrumNoMask_;
134  casacore::MaskedArray<casacore::Float> weightSumNoMask_;
135  casacore::MaskedArray<casacore::uInt> nNoMask_;
136
137  casacore::Vector<casacore::Bool> userMask_;
138
139  casacore::Vector<casacore::Float> tsysSum_, tsysSumNoMask_;
140  casacore::Double timeSum_, timeSumNoMask_;
141  casacore::Double intervalSum_, intervalSumNoMask_;
142};
143
144}
145#endif
Note: See TracBrowser for help on using the repository browser.