Line data Source code
1 : 2 : //# SkyJones.cc: Implementation for SkyJones 3 : //# Copyright (C) 1996,1997,1998,2000 4 : //# Associated Universities, Inc. Washington DC, USA. 5 : //#n 6 : //# This library is free software; you can redistribute it and/or modify it 7 : //# under the terms of the GNU Library General Public License as published by 8 : //# the Free Software Foundation; either version 2 of the License, or (at your 9 : //# option) any later version. 10 : //# 11 : //# This library is distributed in the hope that it will be useful, but WITHOUT 12 : //# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 13 : //# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public 14 : //# License for more details. 15 : //# 16 : //# You should have received a copy of the GNU Library General Public License 17 : //# along with this library; if not, write to the Free Software Foundation, 18 : //# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA. 19 : //# 20 : //# Correspondence concerning AIPS++ should be adressed as follows: 21 : //# Internet email: casa-feedback@nrao.edu. 22 : //# Postal address: AIPS++ Project Office 23 : //# National Radio Astronomy Observatory 24 : //# 520 Edgemont Road 25 : //# Charlottesville, VA 22903-2475 USA 26 : //# 27 : //# 28 : //# $Id$ 29 : 30 : #include <casacore/casa/aips.h> 31 : #include <synthesis/TransformMachines/SkyJones.h> 32 : 33 : using namespace casacore; 34 : namespace casa { //# NAMESPACE CASA - BEGIN 35 : 36 45 : SkyJones::SkyJones():threshold_p(0.0) { 37 : 38 45 : } 39 : 40 : 41 45 : SkyJones::~SkyJones() 42 : { 43 : 44 45 : }; 45 : 46 : 47 : } //# NAMESPACE CASA - END 48 :