IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 14, 2004, 4:20:39 PM (22 years ago)
Author:
gusciora
Message:

Comments.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/pmSubtractBias.c

    r2147 r2148  
    66 *  @author George Gusciora, MHPCC
    77 *
    8  *  @version $Revision: 1.15 $ $Name: not supported by cvs2svn $
    9  *  @date $Date: 2004-10-15 02:15:48 $
     8 *  @version $Revision: 1.16 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2004-10-15 02:20:39 $
    1010 *
    1111 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    3333
    3434    if (bias == NULL) {
    35         // XXX: Generate warning message?
     35        printf("WARNING: bias frame is NULL\n");
    3636        return(in);
    3737    }
     
    130130
    131131    if (numOptions == 0) {
    132         // XXX: psErrorMsg()
     132        psError(__func__, "No statistics options have been specified\n");
    133133    }
    134134    if (numOptions != 1) {
    135         // XXX:Generate warning message.
     135        printf("WARNING: Too many statistics options have been specified\n");
    136136    }
    137137    return(opt);
     
    230230    if ((overscans == NULL) && (overScanAxis != PM_OVERSCAN_NONE)) {
    231231        psError(__func__, "(overscans == NULL) && (overScanAxis != PM_OVERSCAN_NONE)\n");
    232         //XXX: psErrorMsg()
    233232        return(in);
    234233    }
     
    237236            (overScanAxis == PM_OVERSCAN_ALL)) &&
    238237            (fit == PM_FIT_NONE)) {
    239         //XXX: psWarningMsg()
     238        printf("WARNING: overScanAxis equals NONE or ALL, and fit equals NONE\n");
    240239        //XXX: Then what?
    241         printf("WARNING: overScanAxis equals NONE or ALL, and fit equals NONE\n");
    242         //        return(in);
    243240    }
    244241
     
    375372                } else if (fit == PM_FIT_SPLINE) {
    376373                    mySpline = (psSpline1D *) fitSpec;
    377                     // XXX: What is the point of doing this?
     374                    // XXX: The spline functions do not currently work if the number of
     375                    // data points and the number of splines are not equal.
    378376                }
    379377            }
Note: See TracChangeset for help on using the changeset viewer.