source: branches/alma/src/Templates.cpp @ 1446

Last change on this file since 1446 was 1446, checked in by TakTsutsumi, 16 years ago

Merged recent updates (since 2007) from nrao-asap

File size: 5.1 KB
Line 
1//#---------------------------------------------------------------------------
2//# Templates.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: Templates.cpp 1091 2006-07-28 03:25:32Z mar637 $
30//#---------------------------------------------------------------------------
31#include "Scantable.h"
32
33#include <casa/aips.h>
34#include <casa/namespace.h>
35#include <casa/Exceptions/Error.cc>
36#include <casa/Utilities/CountedPtr.cc>
37
38template class casa::CountedConstPtr<asap::Scantable>;
39template class casa::CountedPtr<asap::Scantable>;
40template class casa::CountedPtr<asap::STPol>;
41template class casa::PtrRep<asap::Scantable>;
42template class casa::SimpleCountedConstPtr<asap::Scantable>;
43template class casa::SimpleCountedConstPtr<asap::STPol>;
44template class casa::SimpleCountedPtr<asap::Scantable>;
45template class casa::SimpleCountedPtr<asap::STPol>;
46
47#include <casa/Arrays/ArrayLogical.cc>
48#include <casa/Arrays/ArrayMath.cc>
49#include <casa/Arrays/MaskArrMath.cc>
50#include <casa/Arrays/MaskedArray.cc>
51#include <casa/Arrays/Array.h>
52#include <casa/Arrays/Array.cc>
53#include <casa/Arrays/Vector.h>
54#include <casa/Utilities/BinarySearch.cc>
55#include <coordinates/Coordinates/FrequencyAligner.cc>
56#include <lattices/Lattices/Lattice.h>
57#include <lattices/Lattices/LatticeUtilities.cc>
58#include <scimath/Mathematics/InterpolateArray1D.cc>
59#include <tables/Tables/BaseMappedArrayEngine.cc>
60#include <tables/Tables/TableVector.h>
61#include <tables/Tables/TVec.cc>
62#include <tables/Tables/TableVector.cc>
63#include <tables/Tables/TVecScaCol.cc>
64#include <tables/Tables/TVecTemp.cc>
65//#include <tables/Tables/TVecMath.h>
66
67template class ROTableVector<uInt>;
68template class TableVector<uInt>;
69template class TabVecScaCol<uInt>;
70template class TabVecTemp<uInt>;
71template class TabVecRep<uInt>;
72
73template class ROTableVector<Float>;
74template class TabVecScaCol<Float>;
75template class TabVecTemp<Float>;
76template class TabVecRep<Float>;
77
78template class ROTableVector<uChar>;
79template class TableVector<uChar>;
80template class TabVecScaCol<uChar>;
81template class TabVecTemp<uChar>;
82template class TabVecRep<uChar>;
83
84//template void convertArray<Bool, uChar>(Array<Bool> &, Array<uChar> const &);
85template void convertArray<uChar, Bool>(Array<uChar> &, Array<Bool> const &);
86
87template Array<Float>& operator/=<Float>(Array<Float>&, MaskedArray<Float> const&);
88template MaskedArray<Float> const& operator*=<Float>(MaskedArray<Float> const&, Float const&);
89template MaskedArray<Float> const& operator*=<Float>(MaskedArray<Float> const&, Array<Float> const&);
90template MaskedArray<Float> const& operator/=<Float>(MaskedArray<Float> const&, Float const&);
91template MaskedArray<Float> operator+<Float>(MaskedArray<Float> const&, MaskedArray<Float> const&);
92template MaskedArray<Float> operator-<Float>(MaskedArray<Float> const&, MaskedArray<Float> const&);
93template MaskedArray<Float> operator-<Float>(MaskedArray<Float> const&, Array<Float> const&);
94
95template MaskedArray<Float> operator/<Float>(MaskedArray<Float> const&, MaskedArray<Float> const&);
96
97template MaskedArray<Float> operator*<Float>(MaskedArray<Float> const&, MaskedArray<Float> const&);
98template MaskedArray<Float> operator*<Float>(MaskedArray<Float> const&, Array<Float> const&);
99template MaskedArray<Float> operator*<Float>(Array<Float> const&, MaskedArray<Float> const&);
100template MaskedArray<Float> operator*<Float>(Float const&, MaskedArray<Float> const&);
101template Float stddev<Float>(MaskedArray<Float> const&);
102template Float median<Float>(MaskedArray<Float> const&, Bool, Bool);
103template Float sumsquares<Float>(MaskedArray<Float> const&);
104template Float avdev<Float>(MaskedArray<Float> const&);
105
106template void LatticeUtilities::bin(MaskedArray<float>&, MaskedArray<float> const&, uInt, uInt);
107
108template class FrequencyAligner<Float>;
109
110template class BaseMappedArrayEngine<Float, Float>;
111
112//#include "MathUtils2.cpp"
113//namespace mathutil {
114//  template void hanning(Vector<Float>&, Vector<Bool>&,
115//                      const Vector<Float>&,
116//                      const Vector<Bool>&,
117//                      Bool, Bool);
118//}
119
Note: See TracBrowser for help on using the repository browser.