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: aips2-request@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//# $Id: Tables.h 21434 2014-05-07 13:07:20Z gervandiepen $
27
28#ifndef TABLES_DATAMAN_H
29#define TABLES_DATAMAN_H
30
31//# Includes
32//# storage managers
33#include <casacore/casa/aips.h>
34#include <casacore/tables/DataMan/StManAipsIO.h>
35#include <casacore/tables/DataMan/StandardStMan.h>
36#include <casacore/tables/DataMan/StandardStManAccessor.h>
37#include <casacore/tables/DataMan/IncrementalStMan.h>
38#include <casacore/tables/DataMan/IncrStManAccessor.h>
39#include <casacore/tables/DataMan/TiledDataStMan.h>
40#include <casacore/tables/DataMan/TiledDataStManAccessor.h>
41#include <casacore/tables/DataMan/TiledCellStMan.h>
42#include <casacore/tables/DataMan/TiledColumnStMan.h>
43#include <casacore/tables/DataMan/TiledShapeStMan.h>
44#include <casacore/tables/DataMan/MemoryStMan.h>
45
46//# virtual column engines
47#include <casacore/tables/DataMan/RetypedArrayEngine.h>
48#include <casacore/tables/DataMan/RetypedArraySetGet.h>
49#include <casacore/tables/DataMan/ScaledArrayEngine.h>
50#include <casacore/tables/DataMan/MappedArrayEngine.h>
51#include <casacore/tables/DataMan/ForwardCol.h>
52#include <casacore/tables/DataMan/ForwardColRow.h>
53#include <casacore/tables/DataMan/CompressComplex.h>
54#include <casacore/tables/DataMan/CompressFloat.h>
55#include <casacore/tables/DataMan/VirtualTaQLColumn.h>
56
57
58namespace casacore { //# NAMESPACE CASACORE - BEGIN
59
60// <module>
61
62// <summary>
63// DataManagers are the physical representation of table data.
64// </summary>
65
66// <use visibility=export>
67
68// <reviewed reviewer="jhorstko" date="1994/08/30" tests="" demos="">
69// </reviewed>
70
71// <prerequisite>
72// <li> <linkto module="Tables:description">Tables</linkto> module
73// </prerequisite>
74
75// <etymology>
76// DataMan is the abbreviation of data managers.
77// </etymology>
78
79// <synopsis>
80// Tables are the fundamental storage mechanism for Casacore.
81// Tables themselves are a logical organization of the data.
82// Table data are physically stored (or calculated on the fly)
83// using data managers.
84// <br>Casacore ships with several data managers, but it is possible
85// to write a specific data manager that can be loaded dynamically
86// from a shared library.
87// <br>See the <linkto module="Tables:Data Managers">Tables module</linkto>
88// for more information.
89
90// </synopsis>
91// </module>
92
93
94
95} //# NAMESPACE CASACORE - END
96
97#endif
this file contains all the compiler specific defines
Definition mainpage.dox:28