ParallelImagerParams.h

Go to the documentation of this file.
00001 /* -*- mode: c++ -*- */
00002 //# ParallelImagerParams.h: Parameters for parallel imaging
00003 //# Copyright (C) 2016
00004 //# Associated Universities, Inc. Washington DC, USA.
00005 //#
00006 //# This library is free software; you can redistribute it and/or modify it
00007 //# under the terms of the GNU Library General Public License as published by
00008 //# the Free Software Foundation; either version 2 of the License, or (at your
00009 //# option) any later version.
00010 //#
00011 //# This library is distributed in the hope that it will be useful, but WITHOUT
00012 //# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
00013 //# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Library General Public
00014 //# License for more details.
00015 //#
00016 //# You should have received a copy of the GNU Library General Public License
00017 //# along with this library; if not, write to the Free Software Foundation,
00018 //# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA.
00019 //#
00020 //# Correspondence concerning AIPS++ should be addressed as follows:
00021 //#        Internet email: aips2-request@nrao.edu.
00022 //#        Postal address: AIPS++ Project Office
00023 //#                        National Radio Astronomy Observatory
00024 //#                        520 Edgemont Road
00025 //#                        Charlottesville, VA 22903-2475 USA
00026 //#
00027 #ifndef PARALLEL_IMAGER_PARAMS_H_
00028 #define PARALLEL_IMAGER_PARAMS_H_
00029 
00030 #include <casa/Containers/Record.h>
00031 
00032 namespace casa {
00033 
00038 struct ParallelImagerParams {
00039         ParallelImagerParams(Record sl, Record im, Record gr, Record wt, Record nm,
00040                              Record dc, Record it)
00041                 : selection(sl)
00042                 , image(im)
00043                 , grid(gr)
00044                 , weight(wt)
00045                 , normalization(nm)
00046                 , deconvolution(dc)
00047                 , iteration(it) {};
00048 
00049         ParallelImagerParams()
00050                 : selection(Record())
00051                 , image(Record())
00052                 , grid(Record())
00053                 , weight(Record())
00054                 , normalization(Record())
00055                 , deconvolution(Record())
00056                 , iteration(Record()) {};
00057 
00058         Record selection;
00059         Record image;
00060         Record grid;
00061         Record weight;
00062         Record normalization;
00063         Record deconvolution;
00064         Record iteration;
00065 };
00066 
00067 } // namespace casa
00068 
00069 #endif // PARALLEL_IMAGER_PARAMS_H_
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines

Generated on 31 Aug 2016 for casa by  doxygen 1.6.1