38 #define G_INSERT "GFitsTableDoubleCol::insert(int&, int&)"
39 #define G_REMOVE "GFitsTableDoubleCol::remove(int&, int&)"
134 if (
this != &column) {
326 int length = m_length +
nrows;
332 double* new_data =
new double[
m_size];
339 int n_after =
m_number * (m_length - row);
343 double* 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) {
392 if (nrows < 0 || nrows >
m_length-row) {
414 double* new_data =
new double[
m_size];
421 int n_after =
m_number * (length - row);
425 double* dst = new_data;
426 for (
int i = 0; i < n_before; ++i) {
430 for (
int i = 0; i < n_after; ++i) {
536 for (
int i = 0; i <
m_size; ++i) {
545 #if defined(G_SMALL_MEMORY)
586 format.append(
"D20.10");
655 double* dst =
m_data + index;
658 for (
int i = 0; i < num; ++i) {
672 double* new_data =
new double[
m_size];
673 double* dst = new_data;
675 for (
int i = 0; i < index; ++i) {
678 for (
int i = 0; i <
number; ++i) {
681 for (
int i = 0; i <
left; ++i) {
741 for (
int i = 0; i <
m_size; ++i) {
FITS table double column class interface definition.
std::string number(const std::string &noun, const int &number)
Convert singular noun into number noun.
double * m_nulval
NULL value.
int m_number
Number of elements in column.
void free_members(void)
Delete class members.
GFitsTableCol & operator=(const GFitsTableCol &column)
Assignment operator.
virtual void resize_data(const int &index, const int &number)
Resize column data.
int m_varlen
Maximum number of elements in variable-length.
virtual int integer(const int &row, const int &col=0) const
Get integer value.
virtual GFitsTableDoubleCol * clone(void) const
Clone column.
virtual void load_column(void)
Load table column from FITS file.
double * m_data
Data vector.
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 void insert(const int &row, const int &nrows)
Insert rows in column.
double * nulval(void)
Returns pointer to nul value.
virtual void release_data(void)
Release column data.
virtual void alloc_data(void)
Allocates column data.
GFitsTableDoubleCol(void)
Constructor.
int m_length
Length of column (number of rows)
void free_members(void)
Delete class members.
virtual void clear(void)
Clear instance.
virtual std::string ascii_format(void) const
Returns format string of ASCII table.
virtual void fetch_data(void) const
Fetch column data.
int m_size
Size of allocated data area (0 if not loaded)
void alloc_nulval(const double *value)
Allocates null value.
virtual int offset(const int &row, const int &inx) const
Compute offset of column element in memory.
Exception handler interface definition.
double & operator()(const int &row, const int &inx=0)
Column data access operator.
virtual std::string string(const int &row, const int &col=0) const
Get string value.
GFitsTableDoubleCol & operator=(const GFitsTableDoubleCol &column)
Assignment operator.
const int & nrows(void) const
Returns number of rows in column.
virtual ~GFitsTableDoubleCol(void)
Destructor.
virtual bool is_loaded(void) const
Checks if column has been loaded.
void copy_members(const GFitsTableDoubleCol &column)
Copy class members.
virtual double real(const int &row, const int &col=0) const
Get double precision value.
FITS table double column.
virtual void remove(const int &row, const int &nrows)
Remove rows from column.
std::string str(const unsigned short int &value)
Convert unsigned short integer value into string.