IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 2, 2009, 3:11:32 PM (17 years ago)
Author:
eugene
Message:

check in changes from genes development branch : extensive changes to moments calculation, psf model generation, aperture residuals

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/extras/pmVisual.c

    r23989 r25754  
    2222#include "pmSubtractionStamps.h"
    2323#include "pmTrend2D.h"
     24#include "pmPSF.h"
     25#include "pmPSFtry.h"
     26#include "pmSource.h"
    2427#include "pmFPAExtent.h"
    2528
     
    8689{
    8790    char key[10];
    88     fprintf (stdout, "[c]ontinue? [s]kip the rest of these plots? [a]bort all visual plots?");
     91    if (plotFlag) {
     92        fprintf (stdout, "[c]ontinue? [s]kip the rest of these plots? [a]bort all visual plots? (c) ");
     93    } else {
     94        fprintf (stdout, "[c]ontinue? [a]bort all visual plots? (c) ");
     95    }
    8996    if (!fgets(key, 8, stdin)) {
    9097        psWarning("Unable to read option");
    9198    }
    92     if (key[0] == 's') {
     99    if (plotFlag && (key[0] == 's')) {
    93100        *plotFlag = false;
    94101    }
Note: See TracChangeset for help on using the changeset viewer.