Changeset 34260 for trunk/Ohana/src/libdvo/include/dvo.h
- Timestamp:
- Jul 31, 2012, 4:02:00 PM (14 years ago)
- File:
-
- 1 edited
-
trunk/Ohana/src/libdvo/include/dvo.h (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/libdvo/include/dvo.h
r33963 r34260 27 27 DVO_FORMAT_PS1_V2, 28 28 DVO_FORMAT_PS1_V3, 29 DVO_FORMAT_PS1_V4, 29 30 } DVOTableFormat; 30 31 … … 292 293 } DVOTinyValueMode; 293 294 295 # define BOUNDARY_TREE_NAME_LENGTH 128 296 297 typedef struct { 298 int FixedGridDEC; // is the DEC sequence linear? 299 int FixedGridRA; // in the RA sequence in a zone linear? 300 301 double DEC_origin; 302 double DEC_offset; 303 304 int Nzone; 305 double *RA_origin; 306 double *RA_offset; 307 308 int *Nband; 309 int *NBAND; 310 311 double **ra; 312 double **dec; 313 int **cell; 314 char ***name; 315 } BoundaryTree; 316 294 317 // XXX DROP? // a reduced-subset structure for relastro 295 318 // XXX DROP? typedef struct { … … 448 471 float PhotCat (Measure *measure); 449 472 float PhotAper (Measure *measure); 473 float PhotKron (Measure *measure); 450 474 float PhotSys (Measure *measure, Average *average, SecFilt *secfilt); 451 475 float PhotRel (Measure *measure, Average *average, SecFilt *secfilt); … … 456 480 float PhotdM (PhotCode *code, Average *average, SecFilt *secfilt); 457 481 482 float PhotAperInst (Measure *measure); 483 float PhotKronInst (Measure *measure); 484 float PhotKronAve (PhotCode *code, Average *average, SecFilt *secfilt); 485 486 float PhotZeroPoint (Measure *measure, Average *average, SecFilt *secfilt); 487 float PhotAveFluxPSF (PhotCode *code, Average *average, SecFilt *secfilt); 488 float PhotAvedFluxPSF (PhotCode *code, Average *average, SecFilt *secfilt); 489 float PhotAveFluxKron (PhotCode *code, Average *average, SecFilt *secfilt); 490 float PhotAvedFluxKron (PhotCode *code, Average *average, SecFilt *secfilt); 491 458 492 float PhotMstdev (PhotCode *code, Average *average, SecFilt *secfilt); 459 493 float PhotM20 (PhotCode *code, Average *average, SecFilt *secfilt); 460 494 float PhotM80 (PhotCode *code, Average *average, SecFilt *secfilt); 461 495 float PhotUCdist (PhotCode *code, Average *average, SecFilt *secfilt); 496 unsigned int PhotStackID (PhotCode *code, Average *average, SecFilt *secfilt); 462 497 463 498 float PhotColorForCode (Average *average, SecFilt *secfilt, Measure *measure, PhotCode *code); … … 571 606 # include "ps1_v2_defs.h" 572 607 # include "ps1_v3_defs.h" 608 # include "ps1_v4_defs.h" 573 609 # include "ps1_ref_defs.h" 574 610 … … 648 684 int free_tiny_values (Catalog *catalog); 649 685 686 int BoundaryTreeCellCoords (BoundaryTree *tree, int *zone, int *band, double ra, double dec); 687 int BoundaryTreeSave(char *filename, BoundaryTree *tree); 688 BoundaryTree *BoundaryTreeLoad(char *filename); 689 690 void dvo_average_init (Average *average); 691 void dvo_secfilt_init (SecFilt *secfilt); 692 void dvo_measure_init (Measure *measure); 693 650 694 # endif // DVO_H 651
Note:
See TracChangeset
for help on using the changeset viewer.
