38 #define G_INSERT "GFitsTableShortCol::insert(int&, int&)"
39 #define G_REMOVE "GFitsTableShortCol::remove(int&, int&)"
134 if (
this != &column) {
326 int length = m_length +
nrows;
332 short* new_data =
new short[
m_size];
339 int n_after =
m_number * (m_length - row);
343 short* dst = new_data;
344 for (
int i = 0; i < n_before; ++i) {
347 for (
int i = 0; i < n_insert; ++i) {
350 for (
int i = 0; i < n_after; ++i) {
393 if (nrows < 0 || nrows >
m_length-row) {
415 short* new_data =
new short[
m_size];
422 int n_after =
m_number * (length - row);
426 short* dst = new_data;
427 for (
int i = 0; i < n_before; ++i) {
431 for (
int i = 0; i < n_after; ++i) {
537 for (
int i = 0; i <
m_size; ++i) {
546 #if defined(G_SMALL_MEMORY)
656 short* dst =
m_data + index;
659 for (
int i = 0; i < num; ++i) {
673 short* new_data =
new short[
m_size];
674 short* dst = new_data;
676 for (
int i = 0; i < index; ++i) {
679 for (
int i = 0; i <
number; ++i) {
682 for (
int i = 0; i <
left; ++i) {
744 for (
int i = 0; i <
m_size; ++i) {
virtual ~GFitsTableShortCol(void)
Destructor.
std::string number(const std::string &noun, const int &number)
Convert singular noun into number noun.
int m_number
Number of elements in column.
virtual bool is_loaded(void) const
Checks if column has been loaded.
virtual double real(const int &row, const int &col=0) const
Get double precision value.
void free_members(void)
Delete class members.
GFitsTableCol & operator=(const GFitsTableCol &column)
Assignment operator.
int m_varlen
Maximum number of elements in variable-length.
void copy_members(const GFitsTableShortCol &column)
Copy class members.
GFitsTableShortCol & operator=(const GFitsTableShortCol &column)
Assignment operator.
virtual void load_column(void)
Load table column from FITS file.
virtual void clear(void)
Clear instance.
virtual std::string string(const int &row, const int &col=0) const
Get string value.
virtual void init_data(void)
Initialise column data.
const int & number(void) const
Returns number of elements in column.
void init_members(void)
Initialise class members.
CFITSIO interface header.
Abstract interface for FITS table column.
std::vector< int > m_rowstart
Start index of each row.
std::string left(const std::string &s, const int &n, const char &c= ' ')
Left justify string to achieve a length of n characters.
void init_members(void)
Initialise class members.
virtual std::string ascii_format(void) const
Returns format string of ASCII table.
int m_length
Length of column (number of rows)
virtual void remove(const int &row, const int &nrows)
Remove rows from column.
int m_size
Size of allocated data area (0 if not loaded)
virtual int integer(const int &row, const int &col=0) const
Get integer value.
virtual void alloc_data(void)
Allocates column data.
void free_members(void)
Delete class members.
short & operator()(const int &row, const int &inx=0)
Column data access operator.
virtual int offset(const int &row, const int &inx) const
Compute offset of column element in memory.
virtual void insert(const int &row, const int &nrows)
Insert rows in column.
Exception handler interface definition.
short * m_nulval
NULL value.
FITS table short integer column class interface definition.
short * m_data
Data vector.
FITS table short integer column.
virtual GFitsTableShortCol * clone(void) const
Clone column.
GFitsTableShortCol(void)
Constructor.
short * nulval(void)
Returns pointer to nul value.
const int & nrows(void) const
Returns number of rows in column.
virtual void fetch_data(void) const
Fetch column data.
virtual void resize_data(const int &index, const int &number)
Resize column data.
virtual void release_data(void)
Release column data.
void alloc_nulval(const short *value)
Allocates null value.
std::string str(const unsigned short int &value)
Convert unsigned short integer value into string.