casacore
Loading...
Searching...
No Matches
DataMan.h
Go to the documentation of this file.
1//# DataMan.h: The DataMan module - Casacore table data managers
2//# Copyright (C) 1994-2010
3//# Associated Universities, Inc. Washington DC, USA.
4//#
5//# This library is free software; you can redistribute it and/or modify it
6//# under the terms of the GNU Library General Public License as published by
7//# the Free Software Foundation; either version 2 of the License, or (at your
8//# option) any later version.
9//#
10//# This library is distributed in the hope that it will be useful, but WITHOUT
11//# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12//# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
13//# License for more details.
14//#
15//# You should have received a copy of the GNU Library General Public License
16//# along with this library; if not, write to the Free Software Foundation,
17//# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA.
18//#
19//# Correspondence concerning AIPS++ should be addressed as follows:
20//# Internet email: casa-feedback@nrao.edu.
21//# Postal address: AIPS++ Project Office
22//# National Radio Astronomy Observatory
23//# 520 Edgemont Road
24//# Charlottesville, VA 22903-2475 USA
25
26#ifndef TABLES_DATAMAN_H
27#define TABLES_DATAMAN_H
28
29//# Includes
30//# storage managers
31#include <casacore/casa/aips.h>
32#include <casacore/tables/DataMan/StManAipsIO.h>
33#include <casacore/tables/DataMan/StandardStMan.h>
34#include <casacore/tables/DataMan/StandardStManAccessor.h>
35#include <casacore/tables/DataMan/IncrementalStMan.h>
36#include <casacore/tables/DataMan/IncrStManAccessor.h>
37#include <casacore/tables/DataMan/TiledDataStMan.h>
38#include <casacore/tables/DataMan/TiledDataStManAccessor.h>
39#include <casacore/tables/DataMan/TiledCellStMan.h>
40#include <casacore/tables/DataMan/TiledColumnStMan.h>
41#include <casacore/tables/DataMan/TiledShapeStMan.h>
42#include <casacore/tables/DataMan/MemoryStMan.h>
43
44//# virtual column engines
45#include <casacore/tables/DataMan/RetypedArrayEngine.h>
46#include <casacore/tables/DataMan/RetypedArraySetGet.h>
47#include <casacore/tables/DataMan/ScaledArrayEngine.h>
48#include <casacore/tables/DataMan/MappedArrayEngine.h>
49#include <casacore/tables/DataMan/ForwardCol.h>
50#include <casacore/tables/DataMan/ForwardColRow.h>
51#include <casacore/tables/DataMan/CompressComplex.h>
52#include <casacore/tables/DataMan/CompressFloat.h>
53#include <casacore/tables/DataMan/VirtualTaQLColumn.h>
54
55
56namespace casacore { //# NAMESPACE CASACORE - BEGIN
57
58// <module>
59
60// <summary>
61// DataManagers are the physical representation of table data.
62// </summary>
63
64// <use visibility=export>
65
66// <reviewed reviewer="jhorstko" date="1994/08/30" tests="" demos="">
67// </reviewed>
68
69// <prerequisite>
70// <li> <linkto module="Tables:description">Tables</linkto> module
71// </prerequisite>
72
73// <etymology>
74// DataMan is the abbreviation of data managers.
75// </etymology>
76
77// <synopsis>
78// Tables are the fundamental storage mechanism for Casacore.
79// Tables themselves are a logical organization of the data.
80// Table data are physically stored (or calculated on the fly)
81// using data managers.
82// <br>Casacore ships with several data managers, but it is possible
83// to write a specific data manager that can be loaded dynamically
84// from a shared library.
85// <br>See the <linkto module="Tables:Data Managers">Tables module</linkto>
86// for more information.
87
88// </synopsis>
89// </module>
90
91
92
93} //# NAMESPACE CASACORE - END
94
95#endif
this file contains all the compiler specific defines
Definition mainpage.dox:28