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