Alexandria
2.16
Please provide a description of the project.
|
#include <algorithm>
#include <sstream>
#include <iomanip>
#include <valarray>
#include <boost/lexical_cast.hpp>
#include <CCfits/CCfits>
#include "FitsWriterHelper.h"
#include "Table/Table.h"
#include "ElementsKernel/Exception.h"
Go to the source code of this file.
Namespaces | |
Euclid | |
Euclid::Table | |
Functions | |
template<typename T > | |
std::string | Euclid::Table::scientificFormat (T value) |
size_t | Euclid::Table::maxWidth (const Table &table, size_t column_index) |
size_t | Euclid::Table::maxWidthScientific (const Table &table, size_t column_index) |
std::vector< std::string > | Euclid::Table::getAsciiFormatList (const Table &table) |
Returns a vector with strings representing the FITS ASCII table formats for the given table. More... | |
template<typename T > | |
size_t | Euclid::Table::vectorSize (const Table &table, size_t column_index) |
template<typename T > | |
size_t | Euclid::Table::ndArraySize (const Table &table, size_t column_index) |
std::vector< std::string > | Euclid::Table::getBinaryFormatList (const Table &table) |
Returns a vector with strings representing the FITS binary table formats for the given table. More... | |
template<typename T > | |
std::vector< T > | Euclid::Table::createColumnData (const Euclid::Table::Table &table, size_t column_index) |
template<typename T > | |
std::vector< std::valarray< T > > | Euclid::Table::createVectorColumnData (const Euclid::Table::Table &table, size_t column_index) |
template<typename T > | |
std::vector< T > | Euclid::Table::createSingleValueVectorColumnData (const Euclid::Table::Table &table, size_t column_index) |
template<typename T > | |
std::vector< std::valarray< T > > | Euclid::Table::createNdArrayColumnData (const Euclid::Table::Table &table, size_t column_index) |
template<typename T > | |
std::vector< T > | Euclid::Table::createSingleNdArrayVectorColumnData (const Euclid::Table::Table &table, size_t column_index) |
template<typename T > | |
void | Euclid::Table::populateVectorColumn (const Table &table, size_t column_index, CCfits::ExtHDU &table_hdu, long first_row) |
template<typename T > | |
void | Euclid::Table::populateNdArrayColumn (const Table &table, size_t column_index, CCfits::ExtHDU &table_hdu, long first_row) |
std::string | Euclid::Table::getTDIM (const Table &table, size_t column_index) |
void | Euclid::Table::populateColumn (const Table &table, size_t column_index, CCfits::ExtHDU &table_hdu, long first_row) |
Definition in file FitsWriterHelper.cpp.