Changeset 15137
- Timestamp:
- Sep 30, 2007, 4:20:08 AM (19 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
-
ppImage/src/ppImageAstrom.c (modified) (2 diffs)
-
ppImage/src/ppImageLoop.c (modified) (2 diffs)
-
ppImage/src/ppImageParseCamera.c (modified) (1 diff)
-
psconfig/psconfig.bash (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ppImage/src/ppImageAstrom.c
r15136 r15137 19 19 PS_ASSERT (input, false); 20 20 21 // deactivate the psastro files, reactive when needed22 // XXX ??? pmFPAfileActivate (config->files, true, "PSASTRO.OUTPUT");23 24 21 // convert the output sources created by psphot into astrometry objects 25 22 if (!psastroConvertFPA (input->fpa, recipe)) { … … 33 30 } 34 31 32 // deactivate the psastro files, reactive when needed 33 pmFPAfileActivate (config->files, false, NULL); 34 pmFPAfileActivate (config->files, true, "PSASTRO.OUTPUT"); 35 36 // loop over all chips and perform IO needed 37 pmFPAview *view = pmFPAviewAlloc(0);// View for level of interest 38 while ((chip = pmFPAviewNextChip(view, input->fpa, 1)) != NULL) { 39 psLogMsg ("ppImageLoop", 4, "Chip %d: %x %x\n", view->chip, chip->file_exists, chip->process); 40 41 // Output and Close at Chip level 42 if (!pmFPAfileIOChecks(config, view, PM_FPA_AFTER)) { 43 psFree(view); 44 return false; 45 } 46 } 47 48 // Output and Close FPA 49 if (!pmFPAfileIOChecks(config, view, PM_FPA_AFTER)) { 50 psFree(view); 51 return false; 52 } 53 54 // deactivate the PSASTRO files, re-active all else 55 // XXX do we need a way to activate / deactivate other groups? 56 pmFPAfileActivate (config->files, true, NULL); 57 pmFPAfileActivate (config->files, false, "PSASTRO.OUTPUT"); 58 35 59 return true; 36 60 } -
trunk/ppImage/src/ppImageLoop.c
r14011 r15137 144 144 145 145 // we perform astrometry on all chips after sources have been detected 146 // this also performs the psastro file IO 146 147 if (options->doAstromChip || options->doAstromMosaic) { 147 148 if (!ppImageAstrom(config)) { … … 163 164 } 164 165 165 166 166 // Write out summary statistics 167 167 if (!ppImageStatsOutput (config, options)) { -
trunk/ppImage/src/ppImageParseCamera.c
r15136 r15137 272 272 273 273 // deactivate the psastro files, reactive when needed 274 // XXX ???pmFPAfileActivate (config->files, false, "PSASTRO.OUTPUT");274 pmFPAfileActivate (config->files, false, "PSASTRO.OUTPUT"); 275 275 } 276 276 -
trunk/psconfig/psconfig.bash
r12856 r15137 2 2 3 3 if [ -z $PSCONFIG_DIR ]; then 4 PSCONFIG_DIR=/home/ kiawe/eugene/src.alala/panstarrs/ipp/psconfig4 PSCONFIG_DIR=/home/eugene/src/panstarrs/ipp/psconfig 5 5 fi 6 6
Note:
See TracChangeset
for help on using the changeset viewer.
