LSSTApplications
21.0.0+1b62c9342b,21.0.0+45a059f35e,21.0.0-1-ga51b5d4+ceb9cf20a3,21.0.0-10-g68cce58c5+c7d3cce47e,21.0.0-2-g103fe59+c1ca725317,21.0.0-2-g1367e85+a1c2f7fe71,21.0.0-2-g2909d54+45a059f35e,21.0.0-2-g45278ab+1b62c9342b,21.0.0-2-g4bc9b9f+b2e40a4e47,21.0.0-2-g5242d73+a1c2f7fe71,21.0.0-2-g54e2caa+c00cf99ed0,21.0.0-2-g66bcc37+27b9d7859a,21.0.0-2-g7f82c8f+203cf74700,21.0.0-2-g8dde007+b0df52bfdd,21.0.0-2-g8f08a60+73884b2cf5,21.0.0-2-ga326454+203cf74700,21.0.0-2-ga63a54e+eec04437aa,21.0.0-2-gc738bc1+59028256f4,21.0.0-2-gde069b7+5a8f2956b8,21.0.0-2-ge17e5af+a1c2f7fe71,21.0.0-2-ge712728+9ad031c87e,21.0.0-2-gecfae73+d3766aec80,21.0.0-2-gfc62afb+a1c2f7fe71,21.0.0-20-g4449a12+38dfb87bce,21.0.0-22-gf0532904+afb8e7912b,21.0.0-3-g4c5b185+a403cb96fd,21.0.0-3-g6d51c4a+27b9d7859a,21.0.0-3-g8076721+e873df194c,21.0.0-3-gaa929c8+df5d87f43a,21.0.0-3-gd222c45+afc8332dbe,21.0.0-4-g1383c07+27b9d7859a,21.0.0-4-g3300ddd+1b62c9342b,21.0.0-4-g5873dc9+9a92674037,21.0.0-4-g8a80011+f67daf2f53,21.0.0-5-gcff38f6+bce43c5818,21.0.0-6-g463d161+44134145d4,21.0.0-6-gd3283ba+df5d87f43a,21.0.0-8-g19111d86+d6551531e4,w.2021.04
LSSTDataManagementBasePackage
|
#include <string>
#include <stdexcept>
#include <vector>
#include "ndarray.h"
#include "star/ast.h"
Go to the source code of this file.
Namespaces | |
ast | |
AST wrapper classes and functions. | |
Typedefs | |
using | ast::Array2D = ndarray::Array< double, 2, 2 > |
2D array of const double; typically used for lists of const points More... | |
using | ast::ConstArray2D = ndarray::Array< const double, 2, 2 > |
2D array of const double; typically used for lists of const points More... | |
using | ast::PointI = std::vector< int > |
Vector of ints; typically used for the bounds of Mapping.tranGridForward and inverse. More... | |
using | ast::PointD = std::vector< double > |
Vector of double; used for bounds, points. More... | |
Enumerations | |
enum | ast::DataType { ast::DataType::IntType = AST__INTTYPE, ast::DataType::ShortIntType = AST__SINTTYPE, ast::DataType::ByteType = AST__BYTETYPE, ast::DataType::DoubleType = AST__DOUBLETYPE, ast::DataType::FloatType = AST__FLOATTYPE, ast::DataType::StringType = AST__STRINGTYPE, ast::DataType::ObjectType = AST__OBJECTTYPE, ast::DataType::PointerType = AST__POINTERTYPE, ast::DataType::UndefinedType = AST__UNDEFTYPE, ast::DataType::BadType = AST__BADTYPE } |
Data types held by a KeyMap. More... | |
Functions | |
void | ast::assertOK (AstObject *rawPtr1=nullptr, AstObject *rawPtr2=nullptr) |
Throw std::runtime_error if AST's state is bad. More... | |
bool | ast::escapes (int include=-1) |
Control whether graphical escape sequences are included in strings. More... | |
int | ast::ast_version (void) |
ConstArray2D | ast::arrayFromVector (std::vector< double > const &vec, int nAxes) |
Reshape a vector as a 2-dimensional array that shares the same memory. More... | |
Array2D | ast::arrayFromVector (std::vector< double > &vec, int nAxes) |
Reshape a vector as a 2-dimensional array that shares the same memory. More... | |