source: trunk/src/STTemplates.cpp @ 851

Last change on this file since 851 was 851, checked in by mar637, 18 years ago

added TableVector? template for uInt

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.9 KB
RevLine 
[2]1//#---------------------------------------------------------------------------
2//# SDTemplates.cc: explicit templates for aips++
3//#---------------------------------------------------------------------------
4//# Copyright (C) 2004
[125]5//# ATNF
[2]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//#---------------------------------------------------------------------------
[815]31#include "Scantable.h"
[125]32
33#include <casa/aips.h>
34#include <casa/namespace.h>
[81]35#include <casa/Exceptions/Error.cc>
36#include <casa/Utilities/CountedPtr.cc>
[2]37
[83]38namespace asap {
[815]39  template class casa::CountedConstPtr<Scantable>;
40  template class casa::CountedPtr<Scantable>;
41  template class casa::PtrRep<Scantable>;
42  template class casa::SimpleCountedConstPtr<Scantable>;
43  template class casa::SimpleCountedPtr<Scantable>;
[2]44}
45
[81]46#include <casa/Arrays/ArrayLogical.cc>
47#include <casa/Arrays/ArrayMath.cc>
48#include <casa/Arrays/MaskArrMath.cc>
[454]49#include <casa/Arrays/MaskedArray.cc>
[81]50#include <casa/Arrays/Array.h>
[454]51#include <casa/Arrays/Array.cc>
[261]52#include <casa/Arrays/Vector.h>
53#include <casa/Utilities/BinarySearch.cc>
[310]54#include <coordinates/Coordinates/FrequencyAligner.cc>
[261]55#include <lattices/Lattices/Lattice.h>
56#include <lattices/Lattices/LatticeUtilities.cc>
57#include <scimath/Mathematics/InterpolateArray1D.cc>
[422]58#include <tables/Tables/BaseMappedArrayEngine.cc>
[815]59#include <tables/Tables/TableVector.h>
60#include <tables/Tables/TVec.cc>
61#include <tables/Tables/TableVector.cc>
62#include <tables/Tables/TVecScaCol.cc>
63#include <tables/Tables/TVecTemp.cc>
[2]64
[815]65template class ROTableVector<uInt>;
[851]66template class TableVector<uInt>;
[815]67template class TabVecScaCol<uInt>;
68template class TabVecTemp<uInt>;
69template class TabVecRep<uInt>;
70
71template class ROTableVector<Float>;
72template class TabVecScaCol<Float>;
73template class TabVecTemp<Float>;
74template class TabVecRep<Float>;
75
[125]76template void convertArray<Bool, uChar>(Array<Bool> &, Array<uChar> const &);
77template void convertArray<uChar, Bool>(Array<uChar> &, Array<Bool> const &);
[794]78
[125]79template Array<Float>& operator/=<Float>(Array<Float>&, MaskedArray<Float> const&);
80template MaskedArray<Float> const& operator*=<Float>(MaskedArray<Float> const&, Float const&);
[701]81template MaskedArray<Float> const& operator*=<Float>(MaskedArray<Float> const&, Array<Float> const&);
82template MaskedArray<Float> const& operator/=<Float>(MaskedArray<Float> const&, Float const&);
[239]83template MaskedArray<Float> operator+<Float>(MaskedArray<Float> const&, MaskedArray<Float> const&);
[125]84template MaskedArray<Float> operator-<Float>(MaskedArray<Float> const&, MaskedArray<Float> const&);
[701]85template MaskedArray<Float> operator-<Float>(MaskedArray<Float> const&, Array<Float> const&);
86
87template MaskedArray<Float> operator/<Float>(MaskedArray<Float> const&, MaskedArray<Float> const&);
88
[239]89template MaskedArray<Float> operator*<Float>(MaskedArray<Float> const&, MaskedArray<Float> const&);
[701]90template MaskedArray<Float> operator*<Float>(MaskedArray<Float> const&, Array<Float> const&);
[243]91template MaskedArray<Float> operator*<Float>(Array<Float> const&, MaskedArray<Float> const&);
[815]92template MaskedArray<Float> operator*<Float>(Float const&, MaskedArray<Float> const&);
[125]93template Float stddev<Float>(MaskedArray<Float> const&);
[617]94template Float median<Float>(MaskedArray<Float> const&, Bool, Bool);
[132]95template Float sumsquares<Float>(MaskedArray<Float> const&);
96template Float avdev<Float>(MaskedArray<Float> const&);
[454]97
[132]98template void LatticeUtilities::bin(MaskedArray<float>&, MaskedArray<float> const&, uInt, uInt);
[794]99
[310]100template class FrequencyAligner<Float>;
[794]101
[422]102template class BaseMappedArrayEngine<Float, Float>;
103
[137]104#include "MathUtils2.cc"
[461]105#include "SDPol2.cc"
[125]106namespace mathutil {
107  template void hanning(Vector<Float>&, Vector<Bool>&,
[815]108                        const Vector<Float>&,
109                        const Vector<Bool>&,
[125]110                        Bool, Bool);
111}
[815]112//template Array<Bool> SDPolUtil::stokesData (Array<Bool>& dataIn, Bool);
113//template Array<Float> SDPolUtil::computeStokesDataForWriter(Array<Float>& dataIn, Bool);
114//template Array<uChar> SDPolUtil::computeStokesDataForWriter(Array<uChar>& dataIn, Bool);
[461]115
Note: See TracBrowser for help on using the repository browser.