- Timestamp:
- Jan 23, 2015, 8:27:53 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20150112/Ohana/src/relphot/include/relphot.h
r37807 r37876 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 } SynthZeroPoints; 32 53 33 54 typedef struct { … … 175 196 char SKY_TABLE[DVO_MAX_PATH]; 176 197 int SKY_DEPTH; /** XXX EAM : depth of catalog tables, fix usage */ 198 char *SYNTH_ZERO_POINTS; 177 199 178 200 // globals for parallel region operations … … 508 530 int isGPC1stack (int photcode); 509 531 int isGPC1warp (int photcode); 510 511 532 int isGPC1synth (int photcode); 533 int whichGPC1filter (int photcode); 534 535 536 SynthZeroPoints *SynthZeroPointsLoad (char *filename); 537 538 int relphot_synthphot (int hostID, char *hostpath); 539 int relphot_synthphot_parallel (SkyList *sky); 540 541 int relphot_synthphot_catalog (Catalog *catalog, SynthZeroPoints *zpts); 542 int relphot_synthphot_average (Average *average, SecFilt *secfilt, Measure *measure, SynthZeroPoints *zpts);
Note:
See TracChangeset
for help on using the changeset viewer.
