casa  5.7.0-16
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
FVisJonesMRec.h
Go to the documentation of this file.
1 //# FVisJonesMRec.h: SolvableVisJones cal_main table record access & creation
2 //# Copyright (C) 1996,1997,1998,2000,2003
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 CALIBRATION_FVISJONESMREC_H
30 #define CALIBRATION_FVISJONESMREC_H
31 
32 #include <casa/aips.h>
34 
35 namespace casa { //# NAMESPACE CASA - BEGIN
36 
37 // <summary>
38 // FVisJonesMRec: FVisJones cal_main table record access/creation
39 // </summary>
40 
41 // <use visibility=export>
42 
43 // <reviewed reviewer="" date="" tests="" demos="">
44 
45 // <prerequisite>
46 // <li> <linkto class="CalMainRecord">CalMainRecord</linkto> module
47 // <li> <linkto class="VisJonesMRec">VisJonesMRec</linkto> module
48 // <li> <linkto class="TimeVarVisJonesMRec">TimeVarVisJonesMRec</linkto> module
49 // </prerequisite>
50 //
51 // <etymology>
52 // From "F VisJones" and "main record".
53 // </etymology>
54 //
55 // <synopsis>
56 // The FVisJonesMRec class allows the creation of records for the
57 // main calibration table of FVisJones type, and provides access
58 // to the individual record fields.
59 // </etymology>
60 //
61 // <example>
62 // <srcblock>
63 // </srcblock>
64 // </example>
65 //
66 // <motivation>
67 // Encapsulate access to FVisJones calibration table records.
68 // </motivation>
69 //
70 // <todo asof="98/01/01">
71 // (i) Deal with non-standard columns.
72 // </todo>
73 
75 {
76  public:
77  // Default null constructor, and destructor
78  FVisJonesMRec();
80 
81  // Construct from an existing record
82  FVisJonesMRec (const casacore::Record& inpRec);
83 
84  // a) define
85  void defineRotMeas (const casacore::Float& rotMeas);
86  void defineRotMeasErr (const casacore::Float& rotMeasErr);
87 
88  // b) get
89  void getRotMeas (casacore::Float& rotMeas);
90  void getRotMeasErr (casacore::Float& rotMeasErr);
91  };
92 
93 // <summary>
94 // FVisJonesIonoMRec: FVisJonesIono cal_main table record access/creation
95 // </summary>
96 
97 // <use visibility=export>
98 
99 // <reviewed reviewer="" date="" tests="" demos="">
100 
101 // <prerequisite>
102 // <li> <linkto class="CalMainRecord">CalMainRecord</linkto> module
103 // <li> <linkto class="VisJonesMRec">VisJonesMRec</linkto> module
104 // <li> <linkto class="FVisJonesMRec">FVisJonesMRec</linkto> module
105 // </prerequisite>
106 //
107 // <etymology>
108 // From "F VisJones - Ionosphere" and "main record".
109 // </etymology>
110 //
111 // <synopsis>
112 // The FVisJonesIonoMRec class allows the creation of records for the
113 // main calibration table of FVisJonesIono type, and provides access
114 // to the individual record fields.
115 // </etymology>
116 //
117 // <example>
118 // <srcblock>
119 // </srcblock>
120 // </example>
121 //
122 // <motivation>
123 // Encapsulate access to FVisJonesIono calibration table records.
124 // </motivation>
125 //
126 // <todo asof="98/01/01">
127 // (i) Deal with non-standard columns.
128 // </todo>
130 {
131  public:
132  // Default null constructor, and destructor
135 
136  // Construct from an existing record
137  FVisJonesIonoMRec (const casacore::Record& inpRec);
138 
139  // Field accessors
140  // a) define
141  void defineTEC (const casacore::Float& tec);
142  void defineTECErr (const casacore::Float& tecErr);
143 
144  // b) get
145  void getTEC (casacore::Float& tec);
146  void getTECErr (casacore::Float& tecErr);
147  };
148 
149 
150 } //# NAMESPACE CASA - END
151 
152 #endif
153 
154 
155 
156 
157 
void getRotMeasErr(casacore::Float &rotMeasErr)
void defineTECErr(const casacore::Float &tecErr)
void getTEC(casacore::Float &tec)
b) get
FVisJonesIonoMRec()
Default null constructor, and destructor.
void defineRotMeasErr(const casacore::Float &rotMeasErr)
A hierarchical collection of named fields of various types.
Definition: Record.h:180
FVisJonesIonoMRec: FVisJonesIono cal_main table record access/creation.
FVisJonesMRec()
Default null constructor, and destructor.
TimeVarVisJonesMRec: TimeVarVisJones cal_main table record access &amp; creation.
Definition: TimeVarVJMRec.h:74
void getTECErr(casacore::Float &tecErr)
float Float
Definition: aipstype.h:54
void getRotMeas(casacore::Float &rotMeas)
b) get
FVisJonesMRec: FVisJones cal_main table record access/creation.
Definition: FVisJonesMRec.h:74
void defineTEC(const casacore::Float &tec)
Field accessors a) define.
void defineRotMeas(const casacore::Float &rotMeas)
a) define