Main Page | Class List | Directories | File List | Class Members | File Members

ObitTableCL.h File Reference

ObitTableCL class definition. More...

#include "Obit.h"
#include "ObitErr.h"
#include "ObitTable.h"
#include "ObitData.h"

Go to the source code of this file.

Classes

struct  ObitTableCL
 ObitTableCL Class structure. More...
struct  ObitTableCLRow
 ObitTableCLRow Class structure. More...
struct  ObitTableCLClassInfo
 ClassInfo Structure. More...
struct  ObitTableCLRowClassInfo
 ClassInfo Structure For TableCLRow. More...

Defines

#define MAXKEYCHARTABLECL   24
 Number of characters for Table keyword.
#define ObitTableCLUnref(in)   ObitUnref (in)
 Macro to unreference (and possibly destroy) an ObitTableCL returns an ObitTableCL*.
#define ObitTableCLRef(in)   ObitRef (in)
 Macro to reference (update reference count) an ObitTableCL.
#define ObitTableCLIsA(in)   ObitIsA (in, ObitTableCLGetClass())
 Macro to determine if an object is the member of this or a derived class.
#define ObitTableCLRowUnref(in)   ObitUnref (in)
 Macro to unreference (and possibly destroy) an ObitTableCLRow returns an ObitTableCLRow*.
#define ObitTableCLRowRef(in)   ObitRef (in)
 Macro to reference (update reference count) an ObitTableCLRow.
#define ObitTableCLRowIsA(in)   ObitIsA (in, ObitTableCLRowGetClass())
 Macro to determine if an object is the member of this or a derived class.

Functions

void ObitTableCLRowClassInit (void)
 Public: Row Class initializer.
ObitTableCLRownewObitTableCLRow (ObitTableCL *table)
 Public: Constructor.
gconstpointer ObitTableCLRowGetClass (void)
 Public: ClassInfo pointer.
void ObitTableCLClassInit (void)
 Public: Class initializer.
ObitTableCLnewObitTableCL (gchar *name)
 Public: Constructor.
ObitTableCLnewObitTableCLValue (gchar *name, ObitData *file, glong *ver, ObitIOAccess access, oint numPol, oint numIF, oint numTerm, ObitErr *err)
 Public: Constructor from values.
gconstpointer ObitTableCLGetClass (void)
 Public: ClassInfo pointer.
ObitTableCLObitTableCLCopy (ObitTableCL *in, ObitTableCL *out, ObitErr *err)
 Public: Copy (deep) constructor.
ObitTableCLObitTableCLClone (ObitTableCL *in, ObitTableCL *out)
 Public: Copy (shallow) constructor.
ObitTableCLObitTableCLConvert (ObitTable *in)
 Public: Convert an ObitTable to an ObitTableCL.
ObitIOCode ObitTableCLOpen (ObitTableCL *in, ObitIOAccess access, ObitErr *err)
 Public: Create ObitIO structures and open file.
ObitIOCode ObitTableCLReadRow (ObitTableCL *in, glong iCLRow, ObitTableCLRow *row, ObitErr *err)
 Public: Read a table row.
void ObitTableCLSetRow (ObitTableCL *in, ObitTableCLRow *row, ObitErr *err)
 Public: Init a table row for write.
ObitIOCode ObitTableCLWriteRow (ObitTableCL *in, glong iCLRow, ObitTableCLRow *row, ObitErr *err)
 Public: Write a table row.
ObitIOCode ObitTableCLClose (ObitTableCL *in, ObitErr *err)
 Public: Close file and become inactive.


Detailed Description

ObitTableCL class definition.

This class is derived from the ObitTable class.

This class contains tabular data and allows access. "AIPS CL" contains amplitude/phase/delay and rate calibration information to be applied to a multi source UV data set. An ObitTableCL is the front end to a persistent disk resident structure. Both FITS and AIPS cataloged data are supported. This class is derived from the ObitTable class.

This class contains tabular data and allows access. "AIPS CL" table An ObitTableCL is the front end to a persistent disk resident structure. Both FITS (as Tables) and AIPS cataloged data are supported.

HistoryTable data storage

In memory tables are stored in a fashion similar to how they are stored on disk - in large blocks in memory rather than structures. Due to the word alignment requirements of some machines, they are stored by order of the decreasing element size: double, float long, int, short, char rather than the logical order. The details of the storage in the buffer are kept in the #ObitTableCLDesc.

In addition to the normal tabular data, a table will have a "_status" column to indicate the status of each row. The status value is read from and written to (some modification) AIPS tables but are not written to externally generated FITS tables which don't have these colummns. It will be written to Obit generated tables which will have these columns. Status values:

Specifying desired data transfer parameters

The desired data transfers are specified in the member ObitInfoList. There are separate sets of parameters used to specify the FITS or AIPS data files. In the following an ObitInfoList entry is defined by the name in double quotes, the data type code as an #ObitInfoType enum and the dimensions of the array (? => depends on application). To specify whether the underlying data files are FITS or AIPS The following apply to both types of files:

FITS files

This implementation uses cfitsio which allows using, in addition to regular FITS images, gzip compressed files, pipes, shared memory and a number of other input forms. The convenience Macro #ObitTableCLSetFITS simplifies specifying the desired data. Binary tables are used for storing visibility data in FITS. For accessing FITS files the following entries in the ObitInfoList are used: subsection ObitTableCLAIPS AIPS files The ObitAIPS class must be initialized before accessing AIPS files; this uses ObitAIPSClassInit. For accessing AIPS files the following entries in the ObitInfoList are used:

Creators and Destructors

An ObitTableCL can be created using newObitTableCLValue which attaches the table to an ObitData for the object. If the output ObitTableCL has previously been specified, including file information, then ObitTableCLCopy will copy the disk resident as well as the memory resident information.

A copy of a pointer to an ObitTableCL should always be made using the ObitTableCLRef function which updates the reference count in the object. Then whenever freeing an ObitTableCL or changing a pointer, the function ObitTableCLUnref will decrement the reference count and destroy the object when the reference count hits 0.

I/O

Visibility data is available after an input object is "Opened" and "Read". I/O optionally uses a buffer attached to the ObitTableCL or some external location. To Write an ObitTableCL, create it, open it, and write. The object should be closed to ensure all data is flushed to disk. Deletion of an ObitTableCL after its final unreferencing will automatically close it.

Define Documentation

#define MAXKEYCHARTABLECL   24
 

Number of characters for Table keyword.

#define ObitTableCLIsA in   )     ObitIsA (in, ObitTableCLGetClass())
 

Macro to determine if an object is the member of this or a derived class.

Returns TRUE if a member, else FALSE in = object to reference

#define ObitTableCLRef in   )     ObitRef (in)
 

Macro to reference (update reference count) an ObitTableCL.

returns an ObitTableCL*. in = object to reference

#define ObitTableCLRowIsA in   )     ObitIsA (in, ObitTableCLRowGetClass())
 

Macro to determine if an object is the member of this or a derived class.

Returns TRUE if a member, else FALSE in = object to reference

#define ObitTableCLRowRef in   )     ObitRef (in)
 

Macro to reference (update reference count) an ObitTableCLRow.

returns an ObitTableCLRow*. in = object to reference

#define ObitTableCLRowUnref in   )     ObitUnref (in)
 

Macro to unreference (and possibly destroy) an ObitTableCLRow returns an ObitTableCLRow*.

in = object to unreference

#define ObitTableCLUnref in   )     ObitUnref (in)
 

Macro to unreference (and possibly destroy) an ObitTableCL returns an ObitTableCL*.

in = object to unreference


Function Documentation

ObitTableCL* newObitTableCL gchar *  name  ) 
 

Public: Constructor.

Initializes class if needed on first call.

Parameters:
name An optional name for the object.
Returns:
the new object.

ObitTableCLRow* newObitTableCLRow ObitTableCL table  ) 
 

Public: Constructor.

If table is open and for write, the row is attached to the buffer Initializes Row class if needed on first call.

Parameters:
name An optional name for the object.
Returns:
the new object.

ObitTableCL* newObitTableCLValue gchar *  name,
ObitData file,
glong *  ver,
ObitIOAccess  access,
oint  numPol,
oint  numIF,
oint  numTerm,
ObitErr err
 

Public: Constructor from values.

Creates a new table structure and attaches to the TableList of file. If the specified table already exists then it is returned. Initializes class if needed on first call. Forces an update of any disk resident structures (e.g. AIPS header).

Parameters:
name An optional name for the object.
file ObitData which which the table is to be associated.
ver Table version number. 0=> add higher, value used returned
access access (OBIT_IO_ReadOnly, means do not create if it doesn't exist.
numPol The number of polarizations
numIF The number of IFs
numTerm The number of terms in model polynomial
err Error stack, returns if not empty.
Returns:
the new object, NULL on failure.

void ObitTableCLClassInit void   ) 
 

Public: Class initializer.

ObitTableCL* ObitTableCLClone ObitTableCL in,
ObitTableCL out
 

Public: Copy (shallow) constructor.

ObitIOCode ObitTableCLClose ObitTableCL in,
ObitErr err
 

Public: Close file and become inactive.

Parameters:
in Pointer to object to be closed.
err ObitErr for reporting errors.
Returns:
error code, OBIT_IO_OK=> OK

ObitTableCL* ObitTableCLConvert ObitTable in  ) 
 

Public: Convert an ObitTable to an ObitTableCL.

New object will have references to members of in.

Parameters:
in The object to copy, will still exist afterwards and should be Unrefed if not needed.
Returns:
pointer to the new object.

ObitTableCL* ObitTableCLCopy ObitTableCL in,
ObitTableCL out,
ObitErr err
 

Public: Copy (deep) constructor.

Copies are made of complex members including disk files; these will be copied applying whatever selection is associated with the input. Objects should be closed on input and will be closed on output. In order for the disk file structures to be copied, the output file must be sufficiently defined that it can be written. The copy will be attempted but no errors will be logged until both input and output have been successfully opened. ObitInfoList and ObitThread members are only copied if the output object didn't previously exist. Parent class members are included but any derived class info is ignored.

Parameters:
in The object to copy
out An existing object pointer for output or NULL if none exists.
err Error stack, returns if not empty.
Returns:
pointer to the new object.

gconstpointer ObitTableCLGetClass void   ) 
 

Public: ClassInfo pointer.

Returns:
pointer to the class structure.

ObitIOCode ObitTableCLOpen ObitTableCL in,
ObitIOAccess  access,
ObitErr err
 

Public: Create ObitIO structures and open file.

The image descriptor is read if OBIT_IO_ReadOnly or OBIT_IO_ReadWrite and written to disk if opened OBIT_IO_WriteOnly. After the file has been opened the member, buffer is initialized for reading/storing the table unless member bufferSize is <0. If the requested version ("Ver" in InfoList) is 0 then the highest numbered table of the same type is opened on Read or Read/Write, or a new table is created on on Write. The file etc. info should have been stored in the ObitInfoList:

  • "FileType" OBIT_int scalar = OBIT_IO_FITS or OBIT_IO_AIPS for file type (see class documentation for details).
  • "nRowPIO" OBIT_int scalar = Maximum number of table rows per transfer, this is the target size for Reads (may be fewer) and is used to create buffers.
    Parameters:
    in Pointer to object to be opened.
    access access (OBIT_IO_ReadOnly,OBIT_IO_ReadWrite, or OBIT_IO_WriteOnly). If OBIT_IO_WriteOnly any existing data in the output file will be lost.
    err ObitErr for reporting errors.
    Returns:
    return code, OBIT_IO_OK=> OK

ObitIOCode ObitTableCLReadRow ObitTableCL in,
glong  iCLRow,
ObitTableCLRow row,
ObitErr err
 

Public: Read a table row.

Scalar values are copied but for array values, pointers into the data array are returned.

Parameters:
in Table to read
iCLRow Row number, -1 -> next
row Table Row structure to receive data
err ObitErr for reporting errors.
Returns:
return code, OBIT_IO_OK=> OK

void ObitTableCLRowClassInit void   ) 
 

Public: Row Class initializer.

gconstpointer ObitTableCLRowGetClass void   ) 
 

Public: ClassInfo pointer.

Returns:
pointer to the Row class structure.

void ObitTableCLSetRow ObitTableCL in,
ObitTableCLRow row,
ObitErr err
 

Public: Init a table row for write.

This is only useful prior to filling a row structure in preparation . for a WriteRow operation. Array members of the Row structure are . pointers to independently allocated memory, this routine allows using . the table IO buffer instead of allocating yet more memory.. This routine need only be called once to initialize a Row structure for write..

Parameters:
in Table with buffer to be written
row Table Row structure to attach
err ObitErr for reporting errors.

ObitIOCode ObitTableCLWriteRow ObitTableCL in,
glong  iCLRow,
ObitTableCLRow row,
ObitErr err
 

Public: Write a table row.

Before calling this routine, the row structure needs to be initialized and filled with data. The array members of the row structure are pointers to independently allocated memory. These pointers can be set to the correct table buffer locations using ObitTableCLSetRow

Parameters:
in Table to read
iCLRow Row number, -1 -> next
row Table Row structure containing data
err ObitErr for reporting errors.
Returns:
return code, OBIT_IO_OK=> OK


Generated on Fri Aug 31 22:13:08 2007 for Obit by  doxygen 1.3.9.1