source: trunk/src/SDTemplates.cc @ 132

Last change on this file since 132 was 132, checked in by kil064, 19 years ago

remove ImageUtil? include
add LatticeUtil? include
add new MaskedArray? statisticsal function templates
add LU::bin
remove IU::bin

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.6 KB
Line 
1//#---------------------------------------------------------------------------
2//# SDTemplates.cc: explicit templates for aips++
3//#---------------------------------------------------------------------------
4//# Copyright (C) 2004
5//# ATNF
6//#
7//# This program is free software; you can redistribute it and/or modify it
8//# under the terms of the GNU General Public License as published by the Free
9//# Software Foundation; either version 2 of the License, or (at your option)
10//# any later version.
11//#
12//# This program is distributed in the hope that it will be useful, but
13//# WITHOUT ANY WARRANTY; without even the implied warranty of
14//# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General
15//# Public License for more details.
16//#
17//# You should have received a copy of the GNU General Public License along
18//# with this program; if not, write to the Free Software Foundation, Inc.,
19//# 675 Massachusetts Ave, Cambridge, MA 02139, USA.
20//#
21//# Correspondence concerning this software should be addressed as follows:
22//#        Internet email: Malte.Marquarding@csiro.au
23//#        Postal address: Malte Marquarding,
24//#                        Australia Telescope National Facility,
25//#                        P.O. Box 76,
26//#                        Epping, NSW, 2121,
27//#                        AUSTRALIA
28//#
29//# $Id:
30//#---------------------------------------------------------------------------
31#include "SDMemTable.h"
32
33#include <casa/aips.h>
34#include <casa/namespace.h>
35#include <casa/Containers/Block.h>
36#include <casa/Exceptions/Error.cc>
37#include <casa/Exceptions/Error2.cc>
38#include <casa/Utilities/CountedPtr.cc>
39#include <casa/Utilities/CountedPtr2.cc>
40#include <casa/Utilities/Copy.cc>
41
42namespace asap {
43  template class casa::CountedConstPtr<SDMemTable>;
44  template class casa::CountedPtr<SDMemTable>;
45  template class casa::PtrRep<SDMemTable>;
46  template class casa::SimpleCountedConstPtr<SDMemTable>;
47  template class casa::SimpleCountedPtr<SDMemTable>;
48  template class casa::Block<CountedPtr<SDMemTable> >;
49}
50
51template void objcopy<CountedPtr<asap::SDMemTable> >(CountedPtr<asap::SDMemTable> *, CountedPtr<asap::SDMemTable> const *, uInt);
52template void objmove<CountedPtr<asap::SDMemTable> >(CountedPtr<asap::SDMemTable> *, CountedPtr<asap::SDMemTable> const *, uInt);
53template void objset<CountedPtr<asap::SDMemTable> >(CountedPtr<asap::SDMemTable> *, CountedPtr<asap::SDMemTable>, uInt);
54
55#include <casa/Arrays/ArrayLogical.cc>
56#include <casa/Arrays/ArrayMath.cc>
57#include <casa/Arrays/MaskArrMath.cc>
58#include <casa/Arrays/Array.h>
59#include <scimath/Functionals/CompiledFunction.cc>
60#include <scimath/Functionals/CompiledParam.cc>
61#include <scimath/Mathematics/AutoDiff.h>
62#include <scimath/Mathematics/AutoDiffMath.h>
63#include <casa/Arrays/Vector2.cc>
64#include <lattices/Lattices/LatticeUtilities.cc>
65#include <casa/Utilities/PtrHolder.cc>
66#include <lattices/Lattices/Lattice.h>
67
68template void convertArray<Bool, uChar>(Array<Bool> &, Array<uChar> const &);
69template void convertArray<uChar, Bool>(Array<uChar> &, Array<Bool> const &);
70template LogicalArray operator!=<Float>(Array<Float> const &, Float const &);
71template LogicalArray operator==<Float>(Array<Float> const &, Float const &);
72template LogicalArray operator><Float>(Array<Float> const &, Float const &);
73template LogicalArray operator>=<Float>(Array<Float> const &, Float const &);
74template Array<Float>& operator/=<Float>(Array<Float>&, MaskedArray<Float> const&);
75template MaskedArray<Float> const& operator*=<Float>(MaskedArray<Float> const&, Float const&);
76template MaskedArray<Float> operator-<Float>(MaskedArray<Float> const&, MaskedArray<Float> const&);
77template MaskedArray<Float> const& operator/=<Float>(MaskedArray<Float> const&, Float const&);
78template Float stddev<Float>(MaskedArray<Float> const&);
79template Float median<Float>(MaskedArray<Float> const&);
80template Float sumsquares<Float>(MaskedArray<Float> const&);
81template Float avdev<Float>(MaskedArray<Float> const&);
82template class CompiledFunction<AutoDiff<Float> >;
83template class CompiledParam<AutoDiff<Float> >;
84template Vector<Bool>::Vector(const vector<bool> &);
85template Vector<Float>::Vector(const vector<float> &);
86template Vector<Double>::Vector(const vector<double> &);
87template void Array<float>::tovector(vector<float> &) const;
88template void Array<Bool>::tovector(vector<bool> &) const;
89template void LatticeUtilities::bin(MaskedArray<float>&, MaskedArray<float> const&, uInt, uInt);
90template class PtrHolder<Lattice<Float> >;
91#include "MathUtils.cc"
92namespace mathutil {
93  template void hanning(Vector<Float>&, Vector<Bool>&,
94                        const Vector<Float>&,
95                        const Vector<Bool>&,
96                        Bool, Bool);
97}
Note: See TracBrowser for help on using the repository browser.