Luiza  v03-01
leblind.h
1 typedef struct
2 {
3  // Stars on which to solve
4  double *X;
5  double *Y;
6  double *signal;
7  int star_cnt;
8 
9  // Astrometric catalogues on which to solve
10  char **index_list;
11  int index_cnt;
12 
13  // Frame properties
14  double *frame_dim;
15  double *pixscale;
16  double *crpix;
17 
18  // Solver settings
19  int sip_order;
20  int depth;
21  int verbosity;
22  bool inparallel;
23 
24  // Results of solving
25  double *solution;
26  double solution_sip[4][6][6];
27 } leblind_struct;