/usr/include/astrometry/allquads.h is in libastrometry-dev 0.70+dfsg-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | /*
# This file is part of the Astrometry.net suite.
# Licensed under a 3-clause BSD style license - see LICENSE
*/
#ifndef ALLQUADS_H
#define ALLQUADS_H
#include "starkd.h"
#include "quadfile.h"
#include "codefile.h"
struct allquads {
int dimquads;
int dimcodes;
int id;
char *quadfn;
char *codefn;
char *skdtfn;
startree_t* starkd;
quadfile_t* quads;
codefile_t* codes;
double quad_d2_lower;
double quad_d2_upper;
anbool use_d2_lower;
anbool use_d2_upper;
int starA;
};
typedef struct allquads allquads_t;
allquads_t* allquads_init();
int allquads_open_outputs(allquads_t* aq);
int allquads_create_quads(allquads_t* aq);
int allquads_close(allquads_t* aq);
void allquads_free(allquads_t* aq);
#endif
|