Line data Source code
1 : //# Copyright (C) 1998,1999,2000,2001,2003 2 : //# Associated Universities, Inc. Washington DC, USA. 3 : //# 4 : //# This program is free software; you can redistribute it and/or modify it 5 : //# under the terms of the GNU General Public License as published by the Free 6 : //# Software Foundation; either version 2 of the License, or (at your option) 7 : //# any later version. 8 : //# 9 : //# This program is distributed in the hope that it will be useful, but WITHOUT 10 : //# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 11 : //# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 12 : //# more details. 13 : //# 14 : //# You should have received a copy of the GNU General Public License along 15 : //# with this program; if not, write to the Free Software Foundation, Inc., 16 : //# 675 Massachusetts Ave, Cambridge, MA 02139, USA. 17 : //# 18 : //# Correspondence concerning AIPS++ should be addressed as follows: 19 : //# Internet email: casa-feedback@nrao.edu. 20 : //# Postal address: AIPS++ Project Office 21 : //# National Radio Astronomy Observatory 22 : //# 520 Edgemont Road 23 : //# Charlottesville, VA 22903-2475 USA 24 : //# 25 : 26 : #include <imageanalysis/ImageAnalysis/ImageCollapser.h> 27 : 28 : namespace casa { 29 : 30 0 : template<> void ImageCollapser<Complex>::_doHighPerf( 31 : std::shared_ptr<const ImageInterface<Complex>>, TempImage<Complex>& 32 : ) const { 33 0 : ThrowCc("Logic error: This version of the method should never be called"); 34 : } 35 : 36 0 : template<> void ImageCollapser<DComplex>::_doHighPerf( 37 : std::shared_ptr<const ImageInterface<DComplex>>, TempImage<DComplex>& 38 : ) const { 39 0 : ThrowCc("Logic error: This version of the method should never be called"); 40 : } 41 : 42 : }