Changeset 4828
- Timestamp:
- Aug 19, 2005, 5:10:19 PM (21 years ago)
- Location:
- trunk/Ohana/src
- Files:
-
- 33 edited
-
gastro/Makefile (modified) (1 diff)
-
gastro/include/gastro.h (modified) (1 diff)
-
gastro/src/ConfigInit.c (modified) (1 diff)
-
gastro/src/gptolemy.c (modified) (1 diff)
-
gastro2/include/gastro2.h (modified) (1 diff)
-
gastro2/src/ConfigInit.c (modified) (1 diff)
-
gastro2/src/gptolemy2.c (modified) (1 diff)
-
getstar/include/getstar.h (modified) (1 diff)
-
getstar/src/ConfigInit.c (modified) (2 diffs)
-
getstar/src/gcatalog.c (modified) (1 diff)
-
markrock/include/markrock.h (modified) (1 diff)
-
markrock/src/ConfigInit.c (modified) (2 diffs)
-
markrock/src/gcatalog.c (modified) (1 diff)
-
markrock/src/wcatalog.c (modified) (2 diffs)
-
markstar/include/markstar.h (modified) (1 diff)
-
markstar/src/ConfigInit.c (modified) (2 diffs)
-
markstar/src/gcatalog.c (modified) (1 diff)
-
markstar/src/wcatalog.c (modified) (2 diffs)
-
mosastro/include/mosastro.h (modified) (1 diff)
-
mosastro/src/ConfigInit.c (modified) (2 diffs)
-
mosastro/src/gptolemy.c (modified) (1 diff)
-
photdbc/include/photdbc.h (modified) (1 diff)
-
photdbc/src/ConfigInit.c (modified) (2 diffs)
-
photdbc/src/gcatalog.c (modified) (1 diff)
-
photdbc/src/wcatalog.c (modified) (2 diffs)
-
relphot/include/relphot.h (modified) (1 diff)
-
relphot/src/ConfigInit.c (modified) (2 diffs)
-
relphot/src/gcatalog.c (modified) (1 diff)
-
relphot/src/wcatalog.c (modified) (2 diffs)
-
uniphot/include/uniphot.h (modified) (1 diff)
-
uniphot/src/ConfigInit.c (modified) (2 diffs)
-
uniphot/src/gcatalog.c (modified) (1 diff)
-
uniphot/src/wcatalog.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/gastro/Makefile
r3303 r4828 17 17 # 18 18 INCS = -I$(INC) -I$(LINC) -I$(XINC) 19 LIBS = -L$(LLIB) -l FITS -lohana-lm -lsocket -lnsl19 LIBS = -L$(LLIB) -lohana -lFITS -lm -lsocket -lnsl 20 20 CFLAGS = $(INCS) 21 21 LFLAGS = $(LIBS) -
trunk/Ohana/src/gastro/include/gastro.h
r3466 r4828 31 31 char CDROM[256]; 32 32 char CATDIR[256]; 33 char CATMODE[16]; /* raw, mef, split, mysql */ 34 char CATFORMAT[16]; /* internal, elixir, loneos, panstarrs */ 33 35 char REFCAT[256]; 34 36 char HEADER[256]; -
trunk/Ohana/src/gastro/src/ConfigInit.c
r2435 r4828 44 44 ScanConfig (config, "ASTRO_REFCAT", "%s", 0, REFCAT); 45 45 ScanConfig (config, "CATDIR", "%s", 0, CATDIR); 46 ScanConfig (config, "CATMODE", "%s", 0, CATMODE); 47 ScanConfig (config, "CATFORMAT", "%s", 0, CATFORMAT); 46 48 ScanConfig (config, "ROUGH_ASTROMETRY", "%s", 0, ROUGH_ASTROMETRY); 47 49 ScanConfig (config, "PHOTCODE_FILE", "%s", 0, PhotCodeFile); 50 51 if (*CATMODE == 0) strcpy (CATMODE, "RAW"); 52 if (*CATFORMAT == 0) strcpy (CATFORMAT, "ELIXIR"); 48 53 49 54 if (strcasecmp (ROUGH_ASTROMETRY, "header") && -
trunk/Ohana/src/gastro/src/gptolemy.c
r4800 r4828 8 8 char filename[256], *fileroot, *filepath, *subdir; 9 9 Catalog catalog; 10 11 strcpy (catalog.catmode, CATMODE); 10 12 11 13 filepath = pathname (fullpath); -
trunk/Ohana/src/gastro2/include/gastro2.h
r3520 r4828 114 114 char CDROM[256]; 115 115 char CATDIR[256]; 116 char CATMODE[16]; /* raw, mef, split, mysql */ 117 char CATFORMAT[16]; /* internal, elixir, loneos, panstarrs */ 116 118 char REFCAT[256]; 117 119 char HEADER[256]; -
trunk/Ohana/src/gastro2/src/ConfigInit.c
r3390 r4828 43 43 ScanConfig (config, "ASTRO_REFCAT", "%s", 0, REFCAT); 44 44 ScanConfig (config, "CATDIR", "%s", 0, CATDIR); 45 ScanConfig (config, "CATMODE", "%s", 0, CATMODE); 46 ScanConfig (config, "CATFORMAT", "%s", 0, CATFORMAT); 45 47 ScanConfig (config, "ROUGH_ASTROMETRY", "%s", 0, ROUGH_ASTROMETRY); 46 48 ScanConfig (config, "PHOTCODE_FILE", "%s", 0, PhotCodeFile); 47 49 ScanConfig (config, "GASTRO_MAX_NSTARS", "%d", 0, &GASTRO_MAX_NSTARS); 48 50 ScanConfig (config, "GASTRO_MAX_MAG_ERROR", "%lf", 0, &MAX_ERROR); 51 52 if (*CATMODE == 0) strcpy (CATMODE, "RAW"); 53 if (*CATFORMAT == 0) strcpy (CATFORMAT, "ELIXIR"); 49 54 50 55 if (strcasecmp (ROUGH_ASTROMETRY, "header") && -
trunk/Ohana/src/gastro2/src/gptolemy2.c
r4800 r4828 10 10 GSCdata *stars; 11 11 12 filepath = pathname (fullpath); 12 strcpy (catalog.catmode, CATMODE); 13 14 filepath = pathname (fullpath); 13 15 fileroot = filebasename (fullpath); 14 16 subdir = filebasename (filepath); -
trunk/Ohana/src/getstar/include/getstar.h
r3466 r4828 22 22 char GSCFILE[256]; 23 23 char CATDIR[256]; 24 char CATMODE[16]; /* raw, mef, split, mysql */ 25 char CATFORMAT[16]; /* internal, elixir, loneos, panstarrs */ 24 26 double DEFAULT_RADIUS, NSIGMA, SNLIMIT; 25 27 double ZeroPt; -
trunk/Ohana/src/getstar/src/ConfigInit.c
r2490 r4828 40 40 ScanConfig (config, "GSCFILE", "%s", 0, GSCFILE); 41 41 ScanConfig (config, "CATDIR", "%s", 0, CATDIR); 42 ScanConfig (config, "CATMODE", "%s", 0, CATMODE); 43 ScanConfig (config, "CATFORMAT", "%s", 0, CATFORMAT); 42 44 ScanConfig (config, "MIN_SN_FSTAT", "%lf", 0, &SNLIMIT); 43 45 ScanConfig (config, "PHOTCODE_FILE", "%s", 0, PhotCodeFile); … … 53 55 ScanConfig (config, "CCDNUM-KEYWORD", "%s", 0, CCDNumKeyword); 54 56 57 if (*CATMODE == 0) strcpy (CATMODE, "RAW"); 58 if (*CATFORMAT == 0) strcpy (CATFORMAT, "ELIXIR"); 59 55 60 if (!LoadPhotcodes (PhotCodeFile)) { 56 61 fprintf (stderr, "error loading photcodes\n"); -
trunk/Ohana/src/getstar/src/gcatalog.c
r2490 r4828 5 5 int Nsecfilt; 6 6 char mode; 7 8 /* no autodetect for CATMODE yet */ 9 strcpy (catalog[0].catmode, CATMODE); 7 10 8 11 /* read catalog header */ -
trunk/Ohana/src/markrock/include/markrock.h
r3466 r4828 29 29 char GSCDIR[256]; 30 30 char CATDIR[256]; 31 char CATMODE[16]; /* raw, mef, split, mysql */ 32 char CATFORMAT[16]; /* internal, elixir, loneos, panstarrs */ 31 33 char RockCat[256]; 32 34 -
trunk/Ohana/src/markrock/src/ConfigInit.c
r2490 r4828 18 18 /* used in other pipeline functions */ 19 19 ScanConfig (config, "CATDIR", "%s", 0, CATDIR); 20 ScanConfig (config, "CATMODE", "%s", 0, CATMODE); 21 ScanConfig (config, "CATFORMAT", "%s", 0, CATFORMAT); 20 22 21 23 /* unique to markrock */ … … 36 38 ScanConfig (config, "ZERO_PT", "%lf", 0, &ZERO_POINT); 37 39 40 if (*CATMODE == 0) strcpy (CATMODE, "RAW"); 41 if (*CATFORMAT == 0) strcpy (CATFORMAT, "ELIXIR"); 42 38 43 if (!LoadPhotcodes (PhotCodeFile, &photcodes)) { 39 44 fprintf (stderr, "error loading photcodes\n"); -
trunk/Ohana/src/markrock/src/gcatalog.c
r2490 r4828 9 9 10 10 mode = LOAD_AVES | LOAD_MEAS | LOAD_MISS | LOAD_SECF; 11 12 /* no autodetect for CATMODE yet */ 13 strcpy (catalog[0].catmode, CATMODE); 11 14 12 15 if (!load_catalog (catalog, mode, VERBOSE)) { -
trunk/Ohana/src/markrock/src/wcatalog.c
r2490 r4828 3 3 wcatalog (Catalog *catalog) { 4 4 5 int status; 6 char filename[256]; 5 /* set catalog format (elixir, loneos, etc) */ 6 if (!strcmp (CATFORMAT, "INTERNAL")) { 7 sprintf (catalog[0].average_format, "DVO_AVERAGE"); 8 sprintf (catalog[0].measure_format, "DVO_MEASURE"); 9 } else { 10 sprintf (catalog[0].average_format, "DVO_AVERAGE_%s", CATFORMAT); 11 sprintf (catalog[0].measure_format, "DVO_MEASURE_%s", CATFORMAT); 12 } 7 13 8 fits_modify (&catalog[0].header, "MARKROCK", "%t", 1, TRUE); 14 if (!save_catalog (catalog, VERBOSE)) { 15 fprintf (stderr, "ERROR: failure saving catalog\n"); 16 exit (1); 17 } 9 18 10 save_catalog (catalog, VERBOSE);19 /* free, initialize data structures */ 11 20 12 21 if (catalog[0].Naverage) { … … 26 35 catalog[0].Nsecfilt = 0; 27 36 } 28 29 switch (status) { 30 case 0: 31 fprintf (stderr, "error saving catalog\n"); 32 exit (0); 33 case 1: 34 case 2: 35 return (status); 36 default: 37 fprintf (stderr, "unknown exit status for save_catalog\n"); 38 return (FALSE); 39 } 37 fits_free_header (&catalog[0].header); 40 38 } 41 39 -
trunk/Ohana/src/markstar/include/markstar.h
r3466 r4828 8 8 /* global variables set in parameter file */ 9 9 char CATDIR[256]; 10 char CATMODE[16]; /* raw, mef, split, mysql */ 11 char CATFORMAT[16]; /* internal, elixir, loneos, panstarrs */ 12 10 13 char GSCDIR[256]; 11 14 char ImageCat[256]; -
trunk/Ohana/src/markstar/src/ConfigInit.c
r2490 r4828 19 19 ScanConfig (config, "IMAGE_CATALOG", "%s", 0, ImageCat); 20 20 ScanConfig (config, "CATDIR", "%s", 0, CATDIR); 21 ScanConfig (config, "CATMODE", "%s", 0, CATMODE); 22 ScanConfig (config, "CATFORMAT", "%s", 0, CATFORMAT); 23 21 24 ScanConfig (config, "GSCDIR", "%s", 0, GSCDIR); 22 25 ScanConfig (config, "GSCFILE", "%s", 0, GSCFILE); … … 44 47 ScanConfig (config, "PHOTCODE_FILE", "%s", 0, PhotCodeFile); 45 48 49 if (*CATMODE == 0) strcpy (CATMODE, "RAW"); 50 if (*CATFORMAT == 0) strcpy (CATFORMAT, "ELIXIR"); 51 46 52 if (!LoadPhotcodes (PhotCodeFile, &photcodes)) { 47 53 fprintf (stderr, "error loading photcodes\n"); -
trunk/Ohana/src/markstar/src/gcatalog.c
r2490 r4828 9 9 10 10 sprintf (filename, "%s/%s\0", CATDIR, catname); 11 12 /* no autodetect for CATMODE yet */ 13 strcpy (catalog[0].catmode, CATMODE); 11 14 12 15 mode = LOAD_AVES | LOAD_MEAS | LOAD_MISS | LOAD_SECF; -
trunk/Ohana/src/markstar/src/wcatalog.c
r2490 r4828 1 1 # include "markstar.h" 2 2 3 wcatalog ( char *catname,Catalog *catalog) {3 wcatalog (Catalog *catalog) { 4 4 5 int status; 6 char filename[256]; 5 /* set catalog format (elixir, loneos, etc) */ 6 if (!strcmp (CATFORMAT, "INTERNAL")) { 7 sprintf (catalog[0].average_format, "DVO_AVERAGE"); 8 sprintf (catalog[0].measure_format, "DVO_MEASURE"); 9 } else { 10 sprintf (catalog[0].average_format, "DVO_AVERAGE_%s", CATFORMAT); 11 sprintf (catalog[0].measure_format, "DVO_MEASURE_%s", CATFORMAT); 12 } 7 13 8 fits_modify (&catalog[0].header, "MARKSTAR", "%t", 1, TRUE);9 10 sprintf (filename, "%s/%s\0", CATDIR, catname);11 status = save_catalog (filename, catalog, VERBOSE);14 if (!save_catalog (catalog, VERBOSE)) { 15 fprintf (stderr, "ERROR: failure saving catalog\n"); 16 exit (1); 17 } 12 18 13 19 if (catalog[0].Naverage) { … … 27 33 catalog[0].Nsecfilt = 0; 28 34 } 29 30 switch (status) { 31 case 0: 32 exit (0); 33 case 1: 34 case 2: 35 return (status); 36 default: 37 fprintf (stderr, "unknown exit status for save_catalog\n"); 38 return (FALSE); 39 } 35 fits_free_header (&catalog[0].header); 40 36 } 41 37 -
trunk/Ohana/src/mosastro/include/mosastro.h
r4805 r4828 108 108 char REFCAT[256]; 109 109 char CATDIR[256]; 110 char CATMODE[16]; /* raw, mef, split, mysql */ 111 char CATFORMAT[16]; /* internal, elixir, loneos, panstarrs */ 110 112 char ExptimeKeyword[256]; 111 113 char DateKeyword[256]; -
trunk/Ohana/src/mosastro/src/ConfigInit.c
r3466 r4828 27 27 GetConfig (config, "ASTRO_REFCAT", "%s", 0, REFCAT); 28 28 ScanConfig (config, "CATDIR", "%s", 0, CATDIR); 29 ScanConfig (config, "CATMODE", "%s", 0, CATMODE); 30 ScanConfig (config, "CATFORMAT", "%s", 0, CATFORMAT); 29 31 ScanConfig (config, "GSCFILE", "%s", 0, GSCFILE); 30 32 ScanConfig (config, "GSCDIR", "%s", 0, GSC_DIR); … … 47 49 ScanConfig (config, "INST_BRIGHT", "%lf", 0, &INST_BRIGHT); 48 50 51 if (*CATMODE == 0) strcpy (CATMODE, "RAW"); 52 if (*CATFORMAT == 0) strcpy (CATFORMAT, "ELIXIR"); 53 49 54 free (config); 50 55 free (file); -
trunk/Ohana/src/mosastro/src/gptolemy.c
r4800 r4828 6 6 Catalog catalog; 7 7 StarData *stars; 8 9 /* no autodetect for CATMODE yet */ 10 strcpy (catalog.catmode, CATMODE); 8 11 9 12 Nstars = 0; -
trunk/Ohana/src/photdbc/include/photdbc.h
r4808 r4828 32 32 char GSCFILE[256]; 33 33 char CATDIR[256]; 34 char CATMODE[16]; /* raw, mef, split, mysql */ 35 char CATFORMAT[16]; /* internal, elixir, loneos, panstarrs */ 34 36 char PhotCodeFile[256]; 35 37 -
trunk/Ohana/src/photdbc/src/ConfigInit.c
r2494 r4828 51 51 WarnConfig (config, "GSCFILE", "%s", 0, GSCFILE); 52 52 WarnConfig (config, "CATDIR", "%s", 0, CATDIR); 53 ScanConfig (config, "CATMODE", "%s", 0, CATMODE); 54 ScanConfig (config, "CATFORMAT", "%s", 0, CATFORMAT); 55 53 56 WarnConfig (config, "PHOTCODE_FILE", "%s", 0, PhotCodeFile); 54 57 WarnConfig (config, "ZERO_PT", "%lf", 0, &ZERO_POINT); … … 61 64 SetZeroPoint (ZERO_POINT); 62 65 66 if (*CATMODE == 0) strcpy (CATMODE, "RAW"); 67 if (*CATFORMAT == 0) strcpy (CATFORMAT, "ELIXIR"); 68 63 69 if (!LoadPhotcodes (PhotCodeFile)) { 64 70 fprintf (stderr, "error loading photcodes\n"); -
trunk/Ohana/src/photdbc/src/gcatalog.c
r4808 r4828 5 5 char mode; 6 6 7 /* no autodetect for CATMODE yet */ 8 strcpy (catalog[0].catmode, CATMODE); 9 10 /* read catalog header */ 7 11 mode = LOAD_AVES | LOAD_MEAS | LOAD_MISS | LOAD_SECF; 8 9 12 if (!load_catalog (catalog, mode, VERBOSE)) { 10 13 fprintf (stderr, "ERROR: failure loading catalog %s\n", catalog[0].filename); -
trunk/Ohana/src/photdbc/src/wcatalog.c
r2494 r4828 3 3 void wcatalog (Catalog *catalog) { 4 4 5 fits_modify (&catalog[0].header, "NRPHOT", "%t", 1, TRUE); 5 /* set catalog format (elixir, loneos, etc) */ 6 if (!strcmp (CATFORMAT, "INTERNAL")) { 7 sprintf (catalog[0].average_format, "DVO_AVERAGE"); 8 sprintf (catalog[0].measure_format, "DVO_MEASURE"); 9 } else { 10 sprintf (catalog[0].average_format, "DVO_AVERAGE_%s", CATFORMAT); 11 sprintf (catalog[0].measure_format, "DVO_MEASURE_%s", CATFORMAT); 12 } 6 13 7 save_catalog (catalog, VERBOSE); 14 if (!save_catalog (catalog, VERBOSE)) { 15 fprintf (stderr, "ERROR: failure saving catalog\n"); 16 exit (1); 17 } 8 18 9 19 if (catalog[0].Naverage) { … … 23 33 catalog[0].Nsecfilt = 0; 24 34 } 35 fits_free_header (&catalog[0].header); 25 36 } -
trunk/Ohana/src/relphot/include/relphot.h
r4810 r4828 40 40 char GSCFILE[256]; 41 41 char CATDIR[256]; 42 char CATMODE[16]; /* raw, mef, split, mysql */ 43 char CATFORMAT[16]; /* internal, elixir, loneos, panstarrs */ 42 44 char CameraConfig[256]; 43 45 -
trunk/Ohana/src/relphot/src/ConfigInit.c
r4796 r4828 38 38 GetConfig (config, "GSCFILE", "%s", 0, GSCFILE); 39 39 GetConfig (config, "CATDIR", "%s", 0, CATDIR); 40 ScanConfig (config, "CATMODE", "%s", 0, CATMODE); 41 ScanConfig (config, "CATFORMAT", "%s", 0, CATFORMAT); 40 42 GetConfig (config, "PHOTCODE_FILE", "%s", 0, PhotCodeFile); 41 43 GetConfig (config, "ZERO_PT", "%lf", 0, &ZERO_POINT); … … 45 47 GetConfig (config, "RELPHOT_GRID_BINNING", "%d", 0, &RELPHOT_GRID_BINNING); 46 48 GetConfig (config, "CAMERA_CONFIG", "%s", 0, CameraConfig); 49 50 if (*CATMODE == 0) strcpy (CATMODE, "RAW"); 51 if (*CATFORMAT == 0) strcpy (CATFORMAT, "ELIXIR"); 47 52 48 53 if (!LoadPhotcodes (PhotCodeFile)) { -
trunk/Ohana/src/relphot/src/gcatalog.c
r4796 r4828 4 4 5 5 char mode; 6 7 /* no autodetect for CATMODE yet */ 8 strcpy (catalog[0].catmode, CATMODE); 6 9 7 10 if (FINAL) { -
trunk/Ohana/src/relphot/src/wcatalog.c
r2486 r4828 3 3 void wcatalog (Catalog *catalog) { 4 4 5 fits_modify (&catalog[0].header, "NRPHOT", "%t", 1, TRUE); 5 /* set catalog format (elixir, loneos, etc) */ 6 if (!strcmp (CATFORMAT, "INTERNAL")) { 7 sprintf (catalog[0].average_format, "DVO_AVERAGE"); 8 sprintf (catalog[0].measure_format, "DVO_MEASURE"); 9 } else { 10 sprintf (catalog[0].average_format, "DVO_AVERAGE_%s", CATFORMAT); 11 sprintf (catalog[0].measure_format, "DVO_MEASURE_%s", CATFORMAT); 12 } 6 13 7 save_catalog (catalog, VERBOSE); 14 if (!save_catalog (catalog, VERBOSE)) { 15 fprintf (stderr, "ERROR: failure saving catalog\n"); 16 exit (1); 17 } 8 18 9 19 if (catalog[0].Naverage) { … … 23 33 catalog[0].Nsecfilt = 0; 24 34 } 35 fits_free_header (&catalog[0].header); 25 36 } -
trunk/Ohana/src/uniphot/include/uniphot.h
r4809 r4828 41 41 char ImageCat[256]; 42 42 char CATDIR[256]; 43 char CATMODE[16]; /* raw, mef, split, mysql */ 44 char CATFORMAT[16]; /* internal, elixir, loneos, panstarrs */ 43 45 char STATMODE[64]; 44 46 int VERBOSE; -
trunk/Ohana/src/uniphot/src/ConfigInit.c
r2492 r4828 18 18 19 19 ScanConfig (config, "CATDIR", "%s", 0, CATDIR); 20 ScanConfig (config, "CATMODE", "%s", 0, CATMODE); 21 ScanConfig (config, "CATFORMAT", "%s", 0, CATFORMAT); 22 20 23 ScanConfig (config, "IMAGE_CATALOG", "%s", 0, ImageCat); 21 24 ScanConfig (config, "PHOTCODE_FILE", "%s", 0, PhotCodeFile); … … 26 29 free (file); 27 30 31 if (*CATMODE == 0) strcpy (CATMODE, "RAW"); 32 if (*CATFORMAT == 0) strcpy (CATFORMAT, "ELIXIR"); 33 28 34 if (!LoadPhotcodes (PhotCodeFile)) { 29 35 fprintf (stderr, "error loading photcodes\n"); -
trunk/Ohana/src/uniphot/src/gcatalog.c
r2492 r4828 4 4 5 5 int mode; 6 7 /* no autodetect for CATMODE yet */ 8 strcpy (catalog[0].catmode, CATMODE); 6 9 7 10 mode = LOAD_AVES | LOAD_MEAS | LOAD_MISS | LOAD_SECF; -
trunk/Ohana/src/uniphot/src/wcatalog.c
r4797 r4828 3 3 void wcatalog (Catalog *catalog) { 4 4 5 /* set catalog format (elixir, loneos, etc) */ 6 if (!strcmp (CATFORMAT, "INTERNAL")) { 7 sprintf (catalog[0].average_format, "DVO_AVERAGE"); 8 sprintf (catalog[0].measure_format, "DVO_MEASURE"); 9 } else { 10 sprintf (catalog[0].average_format, "DVO_AVERAGE_%s", CATFORMAT); 11 sprintf (catalog[0].measure_format, "DVO_MEASURE_%s", CATFORMAT); 12 } 13 5 14 /** write out catalog, free memory **/ 6 save_catalog (catalog, VERBOSE); 15 if (!save_catalog (catalog, VERBOSE)) { 16 fprintf (stderr, "ERROR: failure saving catalog\n"); 17 exit (1); 18 } 7 19 8 20 if (catalog[0].Naverage) { … … 22 34 catalog[0].Nsecfilt = 0; 23 35 } 36 fits_free_header (&catalog[0].header); 24 37 unlock_catalog (catalog); 25 38 }
Note:
See TracChangeset
for help on using the changeset viewer.
