IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 11, 2013, 2:35:05 PM (13 years ago)
Author:
eugene
Message:

create relphot_images, move relevant code from relphot.c there; add concept of synthetic mags to tie w-band to gri photometry; fix uniphot to handle images with photcodes outside of nominal range

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20130307/Ohana/src/relphot/include/relphot.h

    r35104 r35393  
    44# include <signal.h>
    55# include <pthread.h>
     6
     7# define MARKTIME(MSG,...) {                    \
     8    gettimeofday (&stopTimer, (void *) NULL);   \
     9    float dtime = DTIME (stopTimer, startTimer);        \
     10    fprintf (stderr, MSG, __VA_ARGS__); }
     11
     12# define INITTIME \
     13  struct timeval startTimer, stopTimer; \
     14  gettimeofday (&startTimer, (void *) NULL);
    615
    716/* # define GRID_V1 */
     
    193202int    UpdateAverages;
    194203int    ApplyOffsets;
     204int    SyntheticPhotometry;
    195205
    196206char  *PhotcodeList;
     
    353363void          write_coords        PROTO((Header *header, Coords *coords));
    354364int relphot_objects (int hostID, char *hostpath);
     365int relphot_images (void);
    355366
    356367void relphot_usage (void);
     
    390401
    391402void SetMrelInfoInit (SetMrelInfo *results, int allocLists);
     403
     404int init_synthetic_mags ();
     405int add_synthetic_mags (AverageTiny *average, SecFilt *secfilt, MeasureTiny *measure, off_t *Nmeasure, off_t *Nm);
Note: See TracChangeset for help on using the changeset viewer.