00001 //# DataMan.h: The DataMan module - Casacore table data managers 00002 //# Copyright (C) 1994-2010 00003 //# Associated Universities, Inc. Washington DC, USA. 00004 //# 00005 //# This library is free software; you can redistribute it and/or modify it 00006 //# under the terms of the GNU Library General Public License as published by 00007 //# the Free Software Foundation; either version 2 of the License, or (at your 00008 //# option) any later version. 00009 //# 00010 //# This library is distributed in the hope that it will be useful, but WITHOUT 00011 //# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 00012 //# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public 00013 //# License for more details. 00014 //# 00015 //# You should have received a copy of the GNU Library General Public License 00016 //# along with this library; if not, write to the Free Software Foundation, 00017 //# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA. 00018 //# 00019 //# Correspondence concerning AIPS++ should be addressed as follows: 00020 //# Internet email: aips2-request@nrao.edu. 00021 //# Postal address: AIPS++ Project Office 00022 //# National Radio Astronomy Observatory 00023 //# 520 Edgemont Road 00024 //# Charlottesville, VA 22903-2475 USA 00025 //# 00026 //# $Id: Tables.h 21434 2014-05-07 13:07:20Z gervandiepen $ 00027 00028 #ifndef TABLES_DATAMAN_H 00029 #define TABLES_DATAMAN_H 00030 00031 //# Includes 00032 //# storage managers 00033 #include <casacore/casa/aips.h> 00034 #include <casacore/tables/DataMan/StManAipsIO.h> 00035 #include <casacore/tables/DataMan/StandardStMan.h> 00036 #include <casacore/tables/DataMan/StandardStManAccessor.h> 00037 #include <casacore/tables/DataMan/IncrementalStMan.h> 00038 #include <casacore/tables/DataMan/IncrStManAccessor.h> 00039 #include <casacore/tables/DataMan/TiledDataStMan.h> 00040 #include <casacore/tables/DataMan/TiledDataStManAccessor.h> 00041 #include <casacore/tables/DataMan/TiledCellStMan.h> 00042 #include <casacore/tables/DataMan/TiledColumnStMan.h> 00043 #include <casacore/tables/DataMan/TiledShapeStMan.h> 00044 #include <casacore/tables/DataMan/MemoryStMan.h> 00045 00046 //# virtual column engines 00047 #include <casacore/tables/DataMan/RetypedArrayEngine.h> 00048 #include <casacore/tables/DataMan/RetypedArraySetGet.h> 00049 #include <casacore/tables/DataMan/ScaledArrayEngine.h> 00050 #include <casacore/tables/DataMan/MappedArrayEngine.h> 00051 #include <casacore/tables/DataMan/ForwardCol.h> 00052 #include <casacore/tables/DataMan/ForwardColRow.h> 00053 #include <casacore/tables/DataMan/CompressComplex.h> 00054 #include <casacore/tables/DataMan/CompressFloat.h> 00055 #include <casacore/tables/DataMan/VirtualTaQLColumn.h> 00056 00057 00058 namespace casacore { //# NAMESPACE CASACORE - BEGIN 00059 00060 // <module> 00061 00062 // <summary> 00063 // DataManagers are the physical representation of table data. 00064 // </summary> 00065 00066 // <use visibility=export> 00067 00068 // <reviewed reviewer="jhorstko" date="1994/08/30" tests="" demos=""> 00069 // </reviewed> 00070 00071 // <prerequisite> 00072 // <li> <linkto module="Tables:description">Tables</linkto> module 00073 // </prerequisite> 00074 00075 // <etymology> 00076 // DataMan is the abbreviation of data managers. 00077 // </etymology> 00078 00079 // <synopsis> 00080 // Tables are the fundamental storage mechanism for Casacore. 00081 // Tables themselves are a logical organization of the data. 00082 // Table data are physically stored (or calculated on the fly) 00083 // using data managers. 00084 // <br>Casacore ships with several data managers, but it is possible 00085 // to write a specific data manager that can be loaded dynamically 00086 // from a shared library. 00087 // <br>See the <linkto module="Tables:Data Managers">Tables module</linkto> 00088 // for more information. 00089 00090 // </synopsis> 00091 // </module> 00092 00093 00094 00095 } //# NAMESPACE CASACORE - END 00096 00097 #endif