LSSTApplications
16.0+42,16.0-1-gce273f5+8,16.0-10-g230e10e+1,16.0-11-g9fe0e56+17,16.0-11-gce733cf+17,16.0-12-g5ad1ebf+9,16.0-12-gc85596e+2,16.0-13-gde155d7+2,16.0-14-g9428de4d,16.0-14-gc1cf4a94+2,16.0-15-g8e16a51+14,16.0-2-g0febb12+7,16.0-2-g839ba83+32,16.0-2-g9d5294e+22,16.0-2-gab3db49+7,16.0-2-gf41ba6b+6,16.0-2-gf4e7cdd+5,16.0-3-g6923fb6+15,16.0-3-g8e51203+2,16.0-3-g9645794+6,16.0-3-gcfd6c53+20,16.0-35-g34c7dfe62+1,16.0-4-g03cf288+11,16.0-4-g32d12de,16.0-4-g5f3a788+7,16.0-4-g7690030+30,16.0-4-g8a0f11a+16,16.0-4-ga5d8928+16,16.0-5-g0da18be+7,16.0-5-g4940a70,16.0-5-g563880a+2,16.0-5-g7742071+2,16.0-5-gb3f8a4b+26,16.0-6-g3610b4f+5,16.0-6-gf0acd13+14,16.0-8-g4dec96c+7,16.0-8-gc315727+16,16.0-9-g1de645c+7,16.0-9-gcc4efb7+6,w.2018.36
LSSTDataManagementBasePackage
|
#include <cstddef>
#include <cctype>
#include <limits>
#include <sstream>
#include <stdexcept>
#include <vector>
#include "astshim/base.h"
Go to the source code of this file.
Namespaces | |
ast | |
AST wrapper classes and functions. | |
ast::detail | |
Functions | |
void | ast::detail::annulAstObject (AstObject *object) |
A wrapper around astAnnul; intended as a custom deleter for std::unique_ptr. More... | |
template<typename T1 , typename T2 > | |
void | ast::detail::assertEqual (T1 val1, std::string const &descr1, T2 val2, std::string const &descr2) |
void | ast::detail::astBadToNan (std::vector< double > &p) |
Replace AST__BAD with a quiet NaN in a vector. More... | |
void | ast::detail::astBadToNan (ast::Array2D const &arr) |
Replace AST__BAD with a quiet NaN in a 2-D array. More... | |
std::string | ast::detail::formatAxisAttr (std::string const &name, int axis) |
Format an axis-specific attribute by appending the axis index. More... | |
bool | ast::detail::isSeries (AstCmpMap const *cmpMap) |
Return true if the compound map is in series. More... | |
std::string | ast::detail::getClassName (AstObject const *rawObj) |
Get the AST class name, changing CmpMap to SeriesMap or ParallelMap as appropriate. More... | |
double | ast::detail::safeDouble (double val) |
Return a double value after checking status and replacing AST__BAD with nan More... | |
std::string | ast::detail::stringToUpper (std::string const &str) |
Return a copy of a string in which all characters are uppercase. More... | |