IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Sep 11, 2007, 1:19:37 PM (19 years ago)
Author:
Paul Price
Message:

Not entirely sure why a factor of 2 was being divided out; removing it
seems to fix the width problem though.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppSim/src/ppSimSetPSF.c

    r14814 r14818  
    1818    float seeing   = psMetadataLookupF32(&status, config->arguments, "SEEING"); // Seeing sigma (pix)
    1919
    20     char *psfModelName = psMetadataLookupStr(&status, config->arguments, "PSF.MODEL"); // Seeing sigma (pix)
     20    char *psfModelName = psMetadataLookupStr(&status, config->arguments, "PSF.MODEL"); // Name of PSF model
    2121    if (psfModelName == NULL) {
    2222        psfModelName = defaultModel;
     
    4949
    5050    // supply the semi-major axis
    51     axes.major = seeing / 2.0;
    52     axes.minor = seeing / 2.0;
     51    axes.major = seeing;
     52    axes.minor = seeing;
    5353    axes.theta = 0.0;
    5454
Note: See TracChangeset for help on using the changeset viewer.