IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 4, 2014, 6:18:10 AM (12 years ago)
Author:
eugene
Message:

make new tess table code actually build

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20131211/Ohana/src/libdvo/include/dvo.h

    r36471 r36472  
    346346typedef enum { TESS_NONE, TESS_LOCAL, TESS_RINGS } TessType;
    347347
    348 // TessallationTable is a structure to describe the parameters of a set of "tessellations"
     348// TessellationTable is a structure to describe the parameters of a set of "tessellations"
    349349// (these are not strictly tessellations but projection sets as only the non-local
    350350// versions can cover the full sky).  For LOCAL projection cells, the structure describes
     
    368368  int NY_SUB;
    369369
     370  char *basename;
     371  int Nbasename;
     372  int projectIDoff;
     373  int skycellIDoff;
     374
    370375  TessType type; //
    371376  BoundaryTree *tree;
    372 } TessallationTable;
     377} TessellationTable;
    373378
    374379// a reduced-subset structure for relphot
     
    794799int free_tiny_values (Catalog *catalog);
    795800
     801BoundaryTree *BoundaryTreeLoad(char *filename);
     802BoundaryTree *BoundaryTreeRead(Header *headerPHU, Header *headerZone, FILE *f);
     803
     804int BoundaryTreeSave(char *filename, BoundaryTree *tree);
     805int BoundaryTreeWrite(FILE *f, BoundaryTree *tree);
     806
    796807int BoundaryTreeCellCoords (BoundaryTree *tree, int *zone, int *band, double ra, double dec);
    797 int BoundaryTreeSave(char *filename, BoundaryTree *tree);
    798 BoundaryTree *BoundaryTreeLoad(char *filename);
    799808int BoundaryTreeProjection (double *x, double *y, double r, double d, BoundaryTree *tree, int zone, int band);
     809
     810TessellationTable *TessellationTableLoad(char *filename, int *Ntess);
     811int TessellationTableSave(char *filename, TessellationTable *tess, int Ntess);
    800812
    801813void dvo_average_init (Average *average);
Note: See TracChangeset for help on using the changeset viewer.