casa  $Rev:20696$
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
Public Member Functions | Static Public Member Functions | Protected Member Functions | Friends
casa::ArrayColumnDesc< T > Class Template Reference

Templated class for description of table array columns. More...

#include <ArrColDesc.h>

Inheritance diagram for casa::ArrayColumnDesc< T >:
casa::BaseColumnDesc

List of all members.

Public Member Functions

 ArrayColumnDesc (const String &name, Int ndim=-1, int options=0)
 Construct the column with the given name and dimensionality.
 ArrayColumnDesc (const String &name, const String &comment, Int ndim=-1, int options=0)
 Construct the column with the given name, dimensionality, and comment.
 ArrayColumnDesc (const String &name, const String &comment, const String &dataManName, const String &dataManGroup, Int ndim=-1, int options=0)
 Construct the column with the given name, dimensionality, comment, and default data manager type and group.
 ArrayColumnDesc (const String &name, const IPosition &shape, int options=0)
 Construct the column with the given name and shape.
 ArrayColumnDesc (const String &name, const String &comment, const IPosition &shape, int options=0)
 Construct the column with the given name, shape, and comment.
 ArrayColumnDesc (const String &name, const String &comment, const String &dataManName, const String &dataManGroup, const IPosition &shape, int options=0, int ndim=-1)
 Construct the column with the given name, shape, comment, and default data manager type and group.
 ArrayColumnDesc (const ArrayColumnDesc< T > &)
 Copy constructor (copy semantics);.
 ~ArrayColumnDesc ()
ArrayColumnDesc< T > & operator= (const ArrayColumnDesc< T > &)
 Assignment (copy semantics);.
BaseColumnDescclone () const
 Clone this column description to another.
String className () const
 Get the name of this class.
virtual PlainColumnmakeColumn (ColumnSet *) const
 Create a Column object out of this.
void show (ostream &os) const
 Show the column.
void registerClass () const
 Register the construction function of this class.

Static Public Member Functions

static BaseColumnDescmakeDesc (const String &name)
 Create the object from AipsIO (this function is registered).

Protected Member Functions

virtual void putDesc (AipsIO &) const
 Put the object.
virtual void getDesc (AipsIO &)
 Get the object.

Friends

class ColumnDesc

Detailed Description

template<class T>
class casa::ArrayColumnDesc< T >

Templated class for description of table array columns.

Intended use:

Public interface

Review Status

Reviewed By:
Gareth Hunt
Date Reviewed:
94Nov17

Prerequisite

Etymology

This class builds descriptions of table columns where each cell (which may also be called a row) will hold an array.

Synopsis

ArrayColumnDesc is a templated class for defining a table column containing arrays.

The table values are handled by a data manager. This can be a storage manager to store the values in a file or it can be a virtual column engine to calculate them on-the-fly. Only the basic data types are allowed when storing in a file. These are: Bool, uChar, Short, uShort, Int, uInt, float, double, Complex, DComplex and String.

At table creation time (when a table gets created from a table description), each column needs to be bound to a data manager. If not done explicitly, the table system will bind a column to the default manager defined in the column description.

An array column description consists of the following attributes:

There are several constructors, which allow the definition of most of the above mentioned attributes. Others, like the default keyword set, have to be defined explicitly.

This class is derived from BaseColumnDesc, thus the functions in there also apply to this class.

Once a column description is set up satisfactorily, it must be added to a table description before it can be used by the table system.

Example

        TableDesc tabDesc("tTableDesc", "1", TableDesc::New);
   
        // Now define array columns.
        // This one is indirect and has no dimensionality mentioned yet.
        // Define the keyword UNIT in it.
        ArrayColumnDesc<Complex> arr1Column("Arr1", "comment for Arr1");
        arr1Column.rwKeywordSet().define ("UNIT", "Jy");
        tabDesc.addColumn (arr1Column);
   
        // This one is indirect and has 3-dim arrays.
        tabDesc.addColumn (ArrayColumnDesc<Int>("Arr2",
                                                "comment for Arr2",
                                                3));
        // This one is direct and has 2-dim arrays with axis lengths 4 and 7.
        tabDesc.addColumn (ArrayColumnDesc<uInt>("Arr3",
                                                 "comment for Arr1",
                                                IPosition(2,4,7),
                                                ColumnDesc::Direct));

Motivation

Several column description classes are needed to allow the user to define attributes which are special for each column type. For scalars the special attribute is the default value. They all have to be templated to support arbitrary data types.

Template Type Argument Requirements (T)

Definition at line 180 of file ArrColDesc.h.


Constructor & Destructor Documentation

template<class T>
casa::ArrayColumnDesc< T >::ArrayColumnDesc ( const String name,
Int  ndim = -1,
int  options = 0 
) [explicit]

Construct the column with the given name and dimensionality.

The data manager type defaults to the StandardStman storage manager. The data manager group defaults to the data manager type. Ndim <=0 means that the number of dimensions is free and will be defined when creating the table (rows). Ndim>0 means that the arrays in this column must have the given dimensionality. The possible options are defined in ColumnDesc.h.

template<class T>
casa::ArrayColumnDesc< T >::ArrayColumnDesc ( const String name,
const String comment,
Int  ndim = -1,
int  options = 0 
)

Construct the column with the given name, dimensionality, and comment.

The data manager type defaults to the StandardStman storage manager. The data manager group defaults to the data manager type. Ndim <=0 means that the number of dimensions is free and will be defined when creating the table (rows). Ndim>0 means that the arrays in this column must have the given dimensionality. The possible options are defined in ColumnDesc.h.

template<class T>
casa::ArrayColumnDesc< T >::ArrayColumnDesc ( const String name,
const String comment,
const String dataManName,
const String dataManGroup,
Int  ndim = -1,
int  options = 0 
)

Construct the column with the given name, dimensionality, comment, and default data manager type and group.

A blank data manager group defaults to the data manager type. Ndim <=0 means that the number of dimensions is free and will be defined when creating the table (rows). Ndim>0 means that the arrays in this column must have the given dimensionality. The possible options are defined in ColumnDesc.h.

template<class T>
casa::ArrayColumnDesc< T >::ArrayColumnDesc ( const String name,
const IPosition shape,
int  options = 0 
)

Construct the column with the given name and shape.

The data manager type defaults to the StandardStman storage manager. The data manager group defaults to the data manager type. The possible options are defined in ColumnDesc.h. This constructor can only be used for FixedShape arrays, because the shape of other arrays can only be set per row.

template<class T>
casa::ArrayColumnDesc< T >::ArrayColumnDesc ( const String name,
const String comment,
const IPosition shape,
int  options = 0 
)

Construct the column with the given name, shape, and comment.

The data manager type defaults to the StandardStman storage manager. The data manager group defaults to the data manager type. The possible options are defined in ColumnDesc.h. This constructor can only be used for FixedShape arrays, because the shape of other arrays can only be set per row.

template<class T>
casa::ArrayColumnDesc< T >::ArrayColumnDesc ( const String name,
const String comment,
const String dataManName,
const String dataManGroup,
const IPosition shape,
int  options = 0,
int  ndim = -1 
)

Construct the column with the given name, shape, comment, and default data manager type and group.

A blank data manager group defaults to the data manager type. The possible options are defined in ColumnDesc.h. This constructor can only be used for FixedShape arrays, because the shape of other arrays can only be set per row. If both ndim and shape are given as > 0, ndim should match the length of shape.

template<class T>
casa::ArrayColumnDesc< T >::ArrayColumnDesc ( const ArrayColumnDesc< T > &  )

Copy constructor (copy semantics);.

template<class T>
casa::ArrayColumnDesc< T >::~ArrayColumnDesc ( )

Member Function Documentation

template<class T>
String casa::ArrayColumnDesc< T >::className ( ) const [virtual]

Get the name of this class.

It is used by the registration process. The template argument gets part of the name.

Implements casa::BaseColumnDesc.

template<class T>
BaseColumnDesc* casa::ArrayColumnDesc< T >::clone ( ) const [virtual]

Clone this column description to another.

Implements casa::BaseColumnDesc.

template<class T>
virtual void casa::ArrayColumnDesc< T >::getDesc ( AipsIO ) [protected, virtual]

Get the object.

Implements casa::BaseColumnDesc.

template<class T>
virtual PlainColumn* casa::ArrayColumnDesc< T >::makeColumn ( ColumnSet ) const [virtual]

Create a Column object out of this.

This is used by class ColumnSet to construct a table column object.

Implements casa::BaseColumnDesc.

template<class T>
static BaseColumnDesc* casa::ArrayColumnDesc< T >::makeDesc ( const String name) [static]

Create the object from AipsIO (this function is registered).

template<class T>
ArrayColumnDesc<T>& casa::ArrayColumnDesc< T >::operator= ( const ArrayColumnDesc< T > &  )

Assignment (copy semantics);.

template<class T>
virtual void casa::ArrayColumnDesc< T >::putDesc ( AipsIO ) const [protected, virtual]

Put the object.

Implements casa::BaseColumnDesc.

template<class T>
void casa::ArrayColumnDesc< T >::registerClass ( ) const

Register the construction function of this class.

template<class T>
void casa::ArrayColumnDesc< T >::show ( ostream &  os) const [virtual]

Show the column.

Implements casa::BaseColumnDesc.


Friends And Related Function Documentation

template<class T>
friend class ColumnDesc [friend]

Reimplemented from casa::BaseColumnDesc.

Definition at line 182 of file ArrColDesc.h.


The documentation for this class was generated from the following file: