Changeset 36833 for trunk/Ohana/src/photdbc/include/photdbc.h
- Timestamp:
- Jun 7, 2014, 6:33:11 AM (12 years ago)
- File:
-
- 1 edited
-
trunk/Ohana/src/photdbc/include/photdbc.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/photdbc/include/photdbc.h
r33963 r36833 20 20 int Nmeas; 21 21 } StatType; 22 23 typedef struct { 24 double Xc[5]; 25 double Yc[5]; 26 double Rc; 27 double Dc; 28 } SkyRegionCoords; 29 30 # define MARKTIME(MSG,...) { \ 31 gettimeofday (&stopTimer, (void *) NULL); \ 32 float dtime = DTIME (stopTimer, startTimer); \ 33 fprintf (stderr, MSG, __VA_ARGS__); } 34 35 # define INITTIME \ 36 struct timeval startTimer, stopTimer; \ 37 gettimeofday (&startTimer, (void *) NULL); 22 38 23 39 int PARALLEL; … … 80 96 PhotCodeData photcodes; 81 97 82 char *PHOTCODE_DROP_LIST, *PHOTCODE_ SKIP_LIST;83 int NphotcodesDrop, Nphotcodes Skip;84 PhotCode **photcodesDrop, **photcodes Skip;98 char *PHOTCODE_DROP_LIST, *PHOTCODE_KEEP_LIST; 99 int NphotcodesDrop, NphotcodesKeep; 100 PhotCode **photcodesDrop, **photcodesKeep; 85 101 86 102 # define FLAG_AREA 0X0001 … … 131 147 void SetProtect (int mode); 132 148 int SetSignals (void); 133 int copy_images (char *outdir );149 int copy_images (char *outdir, SkyList *skylist); 134 150 void usage(); 151 152 void dsortindex (double *X, off_t *Y, int N); 153 off_t getRegionStartByRA (double R, double *Rref, off_t Nregions); 154 155 Image *select_images (SkyList *skylist, Image *timage, off_t Ntimage, off_t **LineNumber, off_t *Nimage, int UseFullOverlap); 135 156 136 157 int photdbc_catalogs (char *outroot, SkyList *skylist, int hostID);
Note:
See TracChangeset
for help on using the changeset viewer.
