Changeset 9587
- Timestamp:
- Oct 16, 2006, 2:51:46 PM (20 years ago)
- Location:
- trunk/psastro/src
- Files:
-
- 4 added
- 2 deleted
- 3 edited
-
Makefile.am (modified) (2 diffs)
-
psastro.c (modified) (2 diffs)
-
psastro.h (modified) (1 diff)
-
psastroChooseRefstars.c (added)
-
psastroLoadReferences.c (deleted)
-
psastroLoadRefstars.c (added)
-
psastroLuminosityFunction.c (added)
-
psastroMosaicGetRefstars.c (deleted)
-
psastroRefstarSubset.c (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psastro/src/Makefile.am
r9577 r9587 17 17 psastroDataSave.c \ 18 18 psastroAstromGuess.c \ 19 psastroLoadReferences.c \ 19 psastroLoadRefstars.c \ 20 psastroChooseRefstars.c \ 20 21 psastroConvert.c \ 21 22 psastroChipAstrom.c \ … … 23 24 psastroUtils.c \ 24 25 psastroTestFuncs.c \ 26 psastroLuminosityFunction.c \ 27 psastroRefstarSubset.c \ 25 28 psastroMosaicAstrom.c \ 26 29 psastroMosaicGetGrads.c \ 27 psastroMosaicGetRefstars.c \28 30 psastroMosaicChipAstrom.c \ 29 31 psastroMosaicSetAstrom.c \ -
trunk/psastro/src/psastro.c
r9574 r9587 39 39 40 40 // load the reference stars overlapping the data stars 41 psArray *refs = psastroLoadRef erences (config);41 psArray *refs = psastroLoadRefstars (config); 42 42 if (!refs) { 43 43 psErrorStackPrint(stderr, "failed to load reference data"); … … 45 45 } 46 46 47 // XXX ?? what does this do ?? 48 psastroMosaicGetRefstars (config, refs); 47 // choose reference stars corresponding to the selected chips 48 if (psastroChooseRefstars (config, refs)) { 49 psErrorStackPrint(stderr, "failed to select reference data for chips"); 50 exit (1); 51 } 49 52 50 53 char *mosastro = psMetadataLookupStr (NULL, config->arguments, "MOSASTRO"); -
trunk/psastro/src/psastro.h
r9574 r9587 20 20 # define toTPA toTangentPlane 21 21 # define toSky projection 22 23 // this structure represents a fit to the logN / logS curve for a set of stars 24 // logN = offset + slope * logS 25 typedef struct { 26 double mMin; 27 double mMax; 28 double offset; 29 double slope; 30 } pmLumFunc; 22 31 23 32 pmConfig *psastroArguments (int argc, char **argv);
Note:
See TracChangeset
for help on using the changeset viewer.
