IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 24, 2006, 12:54:02 PM (20 years ago)
Author:
eugene
Message:

first pass on a working getstars

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/getstar/include/getstar.h

    r6812 r6968  
    1010  BY_IMAGE,
    1111  BY_IMMATCH,
     12  BY_IMLIST,
    1213};
    1314
    14 # if (0)
    15 typedef struct {
    16   double X;
    17   double Y;
    18   double R;
    19   double D;
    20   double M, dM;
    21   char   dophot;
    22   double sky;
    23   double fx, fy, df;
    24   double Mgal, Map;
    25   int found;
    26 } Stars;
    27 # endif
     15int       VERBOSE;
     16int       MODE;
     17SkyRegion REGION;
     18char     *IMAGENAME;
    2819
    29 /* global variables set in parameter file */
    30 # if (0)
    31 char   ImageCat[256];
    32 char   ImageTemplate[256];
    33 char   CatTemplate[256];
    34 char   GSCFILE[256];
    35 char   CATDIR[256];
    36 char   CATMODE[16];    /* raw, mef, split, mysql */
    37 char   CATFORMAT[16];  /* internal, elixir, loneos, panstarrs */
    38 double DEFAULT_RADIUS, NSIGMA, SNLIMIT;
    39 double ZeroPt;
    40 int    SKIP_MISSED;
    41 int    XOVERSCAN, YOVERSCAN;
    42 int    XMIN, XMAX, YMIN, YMAX;
    43 int    ACCEPT_ASTROM;
    44 # endif
     20char OUTPUT[256];
     21char GSCFILE[256];
     22char CATDIR[256];
     23char CATMODE[16];    /* raw, mef, split, mysql */
     24char CATFORMAT[16];  /* internal, elixir, loneos, panstarrs */
     25char SKY_TABLE[256];
     26int  SKY_DEPTH;
    4527
    46 int    VERBOSE;
    47 int    MODE;
    48 SkyRegion REGION;
    49 char *IMAGENAME;
    50 
    51 PhotCode *thiscode;
    52 
    53 char DateKeyword[64];
    54 char DateMode[64];
    55 char UTKeyword[64];
    56 char MJDKeyword[64];
    57 char JDKeyword[64];
    58 char ExptimeKeyword[64];
    59 char AirmassKeyword[64];
    60 char CCDNumKeyword[64];
    61 
    62 int CalReference;
    63 int CalColor;
    64 int CALIBRATE;
    65 int DUMP_MATCHES;
    66 int ONLY_IMAGES;
     28int  args             PROTO((int argc, char **argv));
     29int  ConfigInit       PROTO((int *argc, char **argv));
     30int  Shutdown         PROTO((char *format, ...));
     31int  load_pt_catalog  PROTO((Catalog *catalog, SkyRegion *region));
     32int  select_by_region PROTO((Catalog *output, Catalog *catalog, SkyRegion *region, int start, int end));
     33void set_db           PROTO((FITS_DB *in));
     34void wcatalog         PROTO((char *filename, Catalog *catalog));
     35void mkcatalog        PROTO((Catalog *catalog));
     36void init_catalog     PROTO((Catalog *catalog));
     37void TrapSignal       PROTO((int sig));
     38void SetProtect       PROTO((int mode));
     39int  SetSignals       PROTO(());
     40int  gcatalog         PROTO((Catalog *catalog));
Note: See TracChangeset for help on using the changeset viewer.