#include <xsh_data_image_3d.h>
#include <xsh_data_pre_3d.h>
#include <xsh_dump.h>
#include <xsh_utils.h>
#include <xsh_error.h>
#include <xsh_msg.h>
#include <xsh_pfits.h>
#include <xsh_dfs.h>
#include <math.h>
#include <time.h>
#include <cpl.h>
Go to the source code of this file.
Functions | |
static void | xsh_pre_3d_init (xsh_pre_3d *pre, cpl_propertylist *header) |
Fill the XSH_PRE structure from FITS header file. | |
void | xsh_pre_3d_free (xsh_pre_3d **pre_3d) |
xsh_pre_3d * | xsh_pre_3d_new (int nx, int ny, int nz) |
Create new PRE image. | |
xsh_pre_3d * | xsh_pre_3d_load (cpl_frame *frame) |
Load a xsh_pre_3d structure from a frame. | |
int | xsh_pre_3d_get_nx (const xsh_pre_3d *pre) |
Get nx of pre_3d structure. | |
int | xsh_pre_3d_get_ny (const xsh_pre_3d *pre) |
Get ny of pre_3d structure. | |
int | xsh_pre_3d_get_nz (const xsh_pre_3d *pre) |
Get nz of pre_3d structure. | |
xsh_image_3d * | xsh_pre_3d_get_data (xsh_pre_3d *pre_3d) |
Get data. | |
xsh_image_3d * | xsh_pre_3d_get_errs (xsh_pre_3d *pre_3d) |
Get errs. | |
xsh_image_3d * | xsh_pre_3d_get_qual (xsh_pre_3d *pre_3d) |
Get qual. | |
cpl_frame * | xsh_pre_3d_save (const xsh_pre_3d *pre, const char *filename, int temp) |
Save PRE_3D on disk. |