casa  5.7.0-16
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
ReadMSAlgorithm.h
Go to the documentation of this file.
1 //# ReadMSAlgorithm.h: Test class to read in parallel a MS
2 //# Copyright (C) 1996,1997,1998,1999,2000,2002
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 addressed 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 //# $Id$
27 
28 #ifndef SYNTHESIS_READMSALGORITHM_H
29 #define SYNTHESIS_READMSALGORITHM_H
30 
31 #include <casa/BasicSL/String.h>
32 #include <casa/Arrays/Array.h>
35 #include <msvis/MSVis/VisSet.h>
36 #include <msvis/MSVis/VisSetUtil.h>
37 
38 namespace casa { //# NAMESPACE CASA - BEGIN
39 
40 //Test class to read in parallel a MS
41 class ReadMSAlgorithm : public Algorithm {
42  public:
43  // Default constructor and destructor
46 
47  // Get the input data and parameters from the controller
48  void get();
49 
50  // Return the results to the controller
51  void put();
52 
53  // Return the name of the algorithm
55 
56  private:
57  // Local copies of the data and input parameters
58  //casacore::PagedArray<casacore::Float> *model_sl_p;
59  //casacore::Int msid;
63  //casacore::Int cache_p;
64 
65  // Read the MSset
66  void task();
67 };
68 
69 
70 
71 } //# NAMESPACE CASA - END
72 
73 #endif
int Int
Definition: aipstype.h:50
Test class to read in parallel a MS.
Defines a computational unit for parallel processing.
Definition: Algorithm.h:89
void put()
Return the results to the controller.
casacore::String & name()
Return the name of the algorithm.
casacore::String msName
void task()
casacore::Int cache_p;
ReadMSAlgorithm()
Default constructor and destructor.
casacore::String myName
Local copies of the data and input parameters casacore::PagedArray&lt;casacore::Float&gt; *model_sl_p; cas...
String: the storage and methods of handling collections of characters.
Definition: String.h:223