IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 3, 2021, 2:26:18 PM (5 years ago)
Author:
eugene
Message:

pass in additional orders to psPlaneTransformInvert; some minor comments

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psastro/src/psastroModelAdjust.c

    r39926 r41536  
    124124        // invert the new fromFPA transform to get the new toFPA transform
    125125        // NOTE: when we call psPlaneTransformInvert here, we do not increase the order as in other places
    126         psPlaneTransform *fromFPA = psPlaneTransformInvert(NULL, chip->toFPA, *region, 50);
     126        psPlaneTransform *fromFPA = psPlaneTransformInvert(NULL, chip->toFPA, *region, 50, 0);
    127127        psFree (chip->fromFPA);
    128128        chip->fromFPA = fromFPA;
     
    146146    psFree (output->fpa->fromTPA);
    147147    // NOTE: when we call psPlaneTransformInvert here, we do not increase the order as in other places
    148     output->fpa->fromTPA = psPlaneTransformInvert(NULL, output->fpa->toTPA, *fpaRegion, 50);
     148    output->fpa->fromTPA = psPlaneTransformInvert(NULL, output->fpa->toTPA, *fpaRegion, 50, 0);
    149149
    150150    // the model now describes the unrotated focal-plane
     
    195195        // the region used here is the region covered by the chip in the FPA
    196196        // NOTE: when we call psPlaneTransformInvert here, we do not increase the order as in other places
    197         psPlaneTransform *fromFPA = psPlaneTransformInvert(NULL, chip->toFPA, *region, 50);
     197        psPlaneTransform *fromFPA = psPlaneTransformInvert(NULL, chip->toFPA, *region, 50, 0);
    198198        psFree (chip->fromFPA);
    199199        chip->fromFPA = fromFPA;
Note: See TracChangeset for help on using the changeset viewer.