casa  5.7.0-16
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
ImageDataSampling.h
Go to the documentation of this file.
1 //# ImageDataSampling.h: Definition for ImageDataSampling
2 //# Copyright (C) 1996,1997,1998,1999,2000,2001
3 //# Associated Universities, Inc. Washington DC, USA.
4 //#
5 //# This library is free software; you can redistribute it and/or modify it
6 //# under the terms of the GNU Library General Public License as published by
7 //# the Free Software Foundation; either version 2 of the License, or (at your
8 //# option) any later version.
9 //#
10 //# This library is distributed in the hope that it will be useful, but WITHOUT
11 //# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 //# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
13 //# License for more details.
14 //#
15 //# You should have received a copy of the GNU Library General Public License
16 //# along with this library; if not, write to the Free Software Foundation,
17 //# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA.
18 //#
19 //# Correspondence concerning AIPS++ should be adressed as follows:
20 //# Internet email: aips2-request@nrao.edu.
21 //# Postal address: AIPS++ Project Office
22 //# National Radio Astronomy Observatory
23 //# 520 Edgemont Road
24 //# Charlottesville, VA 22903-2475 USA
25 //#
26 //#
27 //# $Id$
28 
29 #ifndef SYNTHESIS_IMAGEDATASAMPLING_H
30 #define SYNTHESIS_IMAGEDATASAMPLING_H
31 
35 #include <casa/Arrays/Matrix.h>
36 #include <casa/Arrays/Array.h>
37 #include <casa/Arrays/Vector.h>
38 #include <casa/Arrays/Matrix.h>
40 
41 namespace casa { //# NAMESPACE CASA - BEGIN
42 
43 // <summary> Provides sampling of single dish data for esimation algorithms
44 // </summary>
45 
46 // <use visibility=export>
47 
48 // <reviewed reviewer="" date="" tests="" demos="">
49 
50 // <prerequisite>
51 // </prerequisite>
52 //
53 // <etymology>
54 // Samples single dish casacore::Data as needed for various estimation algorithms
55 // </etymology>
56 //
57 // <synopsis>
58 // Esimation algorithms such as the Pixon method need sampled
59 // and unitless versions of the data. This class is derived from
60 // DataSampling. It adds methods specific to single dish data.
61 // </synopsis>
62 //
63 // <example>
64 // </example>
65 //
66 // <motivation>
67 // Define an interface to allow efficient processing of chunks of
68 // data
69 // </motivation>
70 //
71 // <todo asof="01/03/03">
72 // <ul> Derive more examples
73 // </todo>
74 
75 
77 public:
78 
82 
85  const casacore::Float sigma);
86 
87  // Copy constructor
89 
90  // Assignment operator
92 
94 
95 private:
96 
99  const casacore::ImageInterface<casacore::Float>* sigmaImagePtr,
100  const casacore::Float sigma);
101 
102  void ok();
103 
104 };
105 
106 } //# NAMESPACE CASA - END
107 
108 #endif
Provides sampling of single dish data for esimation algorithms.
Provides sampling of data for esimation algorithms.
Definition: DataSampling.h:104
float Float
Definition: aipstype.h:54
ImageDataSampling(const casacore::ImageInterface< casacore::Float > &dirty, const casacore::ImageInterface< casacore::Float > &psf, const casacore::ImageInterface< casacore::Float > &sigma)
void init(const casacore::ImageInterface< casacore::Float > &dirty, const casacore::ImageInterface< casacore::Float > &psf, const casacore::ImageInterface< casacore::Float > *sigmaImagePtr, const casacore::Float sigma)
ImageDataSampling & operator=(const ImageDataSampling &other)
Assignment operator.