IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 10, 2005, 9:47:11 AM (22 years ago)
Author:
gusciora
Message:

...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/math/psSpline.c

    r2847 r2941  
    77 *  polynomials.  It also contains a Gaussian functions.
    88 *
    9  *  @version $Revision: 1.78 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2004-12-29 22:15:51 $
     9 *  @version $Revision: 1.79 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2005-01-10 19:47:11 $
    1111 *
    1212 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    19441944    if (x < bins[0]) { \
    19451945        psLogMsg(__func__, PS_LOG_WARN, \
    1946                  "vectorBinDisect##TYPE(): ordinate %f is outside vector range (%f - %f).", \
    1947                  x, bins[0], bins[numBins-1]); \
     1946                 "vectorBinDisect%s(): ordinate %f is outside vector range (%f - %f).", \
     1947                 #TYPE, x, bins[0], bins[numBins-1]); \
    19481948        return(-2); \
    19491949    } \
     
    19511951    if (x > bins[numBins-1]) { \
    19521952        psLogMsg(__func__, PS_LOG_WARN, \
    1953                  "vectorBinDisect##TYPE(): ordinate %f is outside vector range (%f - %f).", \
    1954                  x, bins[0], bins[numBins-1]); \
     1953                 "vectorBinDisect%s(): ordinate %f is outside vector range (%f - %f).", \
     1954                 #TYPE, x, bins[0], bins[numBins-1]); \
    19551955        return(-1); \
    19561956    } \
Note: See TracChangeset for help on using the changeset viewer.