Changeset 38062 for trunk/Ohana/src/relphot/include/relphot.h
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
-
trunk/Ohana
- Property svn:mergeinfo deleted
-
trunk/Ohana/src/relphot/include/relphot.h
r37907 r38062 22 22 PARALLEL_IMAGES, 23 23 APPLY_OFFSETS, 24 SYNTH_PHOT, 24 25 } RelphotMode; 25 26 … … 29 30 MODE_UPDATE = 2, 30 31 MODE_UPDATE_OBJECTS = 3, 32 MODE_SYNTH_PHOT = 4, 31 33 } ModeType; 34 35 // NOTE: this is only used in special cases where we limit photcode ranges 36 typedef enum { 37 PS1_none, 38 PS1_g = 1, 39 PS1_r = 2, 40 PS1_i = 3, 41 PS1_z = 4, 42 PS1_y = 5, 43 PS1_w = 6, 44 } PS1filters; 45 46 typedef struct { 47 Header PHU; 48 Header header[5]; // grizy (matches Nsec in photcodes) 49 Matrix matrix[5]; 50 Coords coords; 51 int Nx; 52 int Ny; 53 } SynthZeroPoints; 32 54 33 55 typedef struct { … … 175 197 char SKY_TABLE[DVO_MAX_PATH]; 176 198 int SKY_DEPTH; /** XXX EAM : depth of catalog tables, fix usage */ 199 char *SYNTH_ZERO_POINTS; 177 200 178 201 // globals for parallel region operations … … 509 532 int isGPC1stack (int photcode); 510 533 int isGPC1warp (int photcode); 511 512 534 int isGPC1synth (int photcode); 535 int whichGPC1filter (int photcode); 536 537 538 SynthZeroPoints *SynthZeroPointsLoad (char *filename); 539 540 int relphot_synthphot (int hostID, char *hostpath); 541 int relphot_synthphot_parallel (SkyList *sky); 542 543 int relphot_synthphot_catalog (Catalog *catalog, SynthZeroPoints *zpts); 544 int relphot_synthphot_average (Average *average, SecFilt *secfilt, Measure *measure, SynthZeroPoints *zpts);
Note:
See TracChangeset
for help on using the changeset viewer.
